mirror of
https://github.com/oven-sh/bun
synced 2026-02-10 19:08:50 +00:00
26 lines
635 B
JSON
26 lines
635 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"]
|
|
}
|
|
}
|
|
}
|