mirror of
https://github.com/oven-sh/bun
synced 2026-02-09 10:28:47 +00:00
22 lines
494 B
JSON
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"]
|
|
}
|