Files
bun.sh/src/tsconfig.json

14 lines
320 B
JSON

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