Files
bun.sh/test/tsconfig.json
2023-03-14 11:54:16 -07:00

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"]
}
}
}