mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
* More fixes for dap * More changes * More changes 2 * More fixes * Fix debugger.ts * Bun Terminal
19 lines
455 B
JSON
19 lines
455 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "NodeNext",
|
|
"moduleDetection": "force",
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"inlineSourceMap": true,
|
|
"allowJs": true,
|
|
"outDir": "dist",
|
|
},
|
|
"include": [".", "../bun-types/index.d.ts"]
|
|
}
|