mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
33 lines
899 B
JSON
33 lines
899 B
JSON
{
|
|
"include": [".", "../packages/bun-types/index.d.ts"],
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"moduleDetection": "force",
|
|
"allowImportingTsExtensions": true,
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "preserve",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"noImplicitThis": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"harness": ["harness.ts"],
|
|
"mkfifo": ["mkfifo.ts"],
|
|
"node-harness": ["js/node/harness.ts"],
|
|
"deno:harness": ["js/deno/harness.ts"],
|
|
"foo/bar": ["js/bun/resolve/baz.js"],
|
|
"@faasjs/*": ["js/bun/resolve/*.js"]
|
|
}
|
|
},
|
|
|
|
"exclude": ["bundler/fixtures", "snapshots", "js/deno"]
|
|
}
|