Files
bun.sh/src/bake/tsconfig.json
2024-10-15 00:02:58 -07:00

22 lines
494 B
JSON

{
"compilerOptions": {
"lib": ["DOM", "ESNext"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "Bundler",
"allowImportingTsExtensions": true,
"noEmit": true,
"strict": true,
"noImplicitAny": false,
"allowJs": true,
"downlevelIteration": true,
"esModuleInterop": true,
"skipLibCheck": true,
"jsx": "react",
"paths": {
"bun-framework-rsc/*": ["./bun-framework-rsc/*"]
}
},
"include": ["**/*.ts", "**/*.tsx"]
}