mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 18:38:55 +00:00
15 lines
440 B
JSON
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"]
|
|
}
|