mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 02:48:50 +00:00
28 lines
694 B
JSON
28 lines
694 B
JSON
{
|
|
"include": [".", "../../packages/bun-types/index.d.ts"],
|
|
"compilerOptions": {
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"moduleDetection": "force",
|
|
"allowImportingTsExtensions": true,
|
|
"experimentalDecorators": true,
|
|
"noEmit": true,
|
|
"composite": true,
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "preserve",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"noImplicitThis": false,
|
|
"paths": {
|
|
"assert": ["./common/assert.js"]
|
|
}
|
|
},
|
|
"exclude": []
|
|
}
|