mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
35 lines
928 B
JSON
35 lines
928 B
JSON
{
|
|
"extends": "../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
// Path remapping
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"harness": ["harness.ts"],
|
|
"mkfifo": ["mkfifo.ts"],
|
|
"node-harness": ["js/node/harness.ts"],
|
|
"deno:harness": ["js/deno/harness.ts"],
|
|
"bun:internal-for-testing": ["../src/js/internal-for-testing.ts"],
|
|
"foo/bar": ["js/bun/resolve/baz.js"],
|
|
"@faasjs/*": ["js/bun/resolve/*.js", "js/bun/resolve/*/src/index.js"],
|
|
"@faasjs/larger/*": ["js/bun/resolve/*/larger-index.js"]
|
|
},
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true
|
|
},
|
|
"include": [
|
|
//
|
|
"**/*.ts",
|
|
"**/*.tsx",
|
|
"**/*.mts",
|
|
"**/*.cts",
|
|
"../src/js/internal-for-testing.ts"
|
|
],
|
|
"exclude": [
|
|
"fixtures",
|
|
"__snapshots__", // bun snapshots (toMatchSnapshot)
|
|
"./snapshots",
|
|
"./js/deno",
|
|
"./node.js" // entire node.js upstream repository
|
|
]
|
|
}
|