Files
bun.sh/src/bake/tsconfig.json
2024-12-10 12:43:17 -08:00

15 lines
459 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"lib": ["ESNext", "DOM", "DOM.Iterable", "DOM.AsyncIterable"],
"paths": {
"bun-framework-react/*": ["./bun-framework-react/*"],
"bindgen": ["../codegen/bindgen-lib"]
},
"jsx": "react-jsx",
"types": ["react/experimental"]
},
"include": ["**/*.ts", "**/*.tsx", "../runtime.js", "../runtime.bun.js"],
"references": [{ "path": "../../packages/bun-types" }]
}