Files
bun.sh/test/tsconfig.json
2023-03-15 16:48:02 -07:00

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