mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* automate Bun.version & revision polyfills * polyfill Bun.gc * bun:jsc module initial polyfills * fixes & improvements to bun-wasm
24 lines
458 B
JSON
24 lines
458 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"declaration": true,
|
|
"esModuleInterop": true,
|
|
"isolatedModules": false,
|
|
"skipLibCheck": true,
|
|
"emitDeclarationOnly": true,
|
|
"strict": true,
|
|
"outDir": ".",
|
|
"baseUrl": ".",
|
|
"types": ["node"]
|
|
},
|
|
"include": [
|
|
"./node_modules/peechy",
|
|
"./schema.d.ts",
|
|
"./index.ts",
|
|
"./schema.js"
|
|
],
|
|
"exclude": []
|
|
}
|