mirror of
https://github.com/YuzuZensai/Kiroku.git
synced 2026-09-13 10:58:55 +00:00
24 lines
532 B
JSON
24 lines
532 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
"lib": [
|
||
|
|
"ESNext"
|
||
|
|
],
|
||
|
|
"module": "esnext",
|
||
|
|
"target": "esnext",
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"noEmit": true,
|
||
|
|
"composite": true,
|
||
|
|
"strict": true,
|
||
|
|
"downlevelIteration": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"allowJs": false,
|
||
|
|
"types": [
|
||
|
|
"bun-types" // add Bun global
|
||
|
|
]
|
||
|
|
}
|
||
|
|
}
|