Files
bun.sh/src/tsconfig.json
2025-10-06 16:22:38 -07:00

15 lines
440 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
// Path remapping
"baseUrl": ".",
"paths": {
"bindgen": ["./codegen/bindgen-lib.ts"],
"bindgenv2": ["./codegen/bindgenv2/lib.ts"]
}
},
"include": ["**/*.ts", "**/*.tsx", "bake/bake.private.d.ts"],
// separate projects have extra settings that only apply in those scopes
"exclude": ["js", "bake", "init", "create", "bun.js/bindings/libuv"]
}