mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
* More fixes for dap * More changes * More changes 2 * More fixes * Fix debugger.ts * Bun Terminal
22 lines
584 B
JSON
22 lines
584 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "nodenext",
|
|
"moduleDetection": "force",
|
|
"allowImportingTsExtensions": true,
|
|
"noEmit": true,
|
|
"composite": true,
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSourceMap": true,
|
|
"allowJs": true,
|
|
"outDir": "dist",
|
|
},
|
|
"include": ["src", "scripts", "../bun-types/index.d.ts", "../bun-inspector-protocol/src"]
|
|
}
|