mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 19:38:58 +00:00
28 lines
723 B
JSON
28 lines
723 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"lib": ["ESNext"],
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "nodenext",
|
|
"strict": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"jsx": "preserve",
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["../packages/bun-types"],
|
|
"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"]
|
|
}
|
|
}
|
|
}
|