mirror of
https://github.com/YuzuZensai/Minikura.git
synced 2026-09-13 18:59:25 +00:00
27 lines
604 B
JSON
27 lines
604 B
JSON
{
|
|||
|
|
"compilerOptions": {
|
||
|
|
// Enable latest features
|
||
|
|
"lib": ["ESNext"],
|
||
|
|
"target": "ESNext",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleDetection": "force",
|
||
|
|
"allowJs": true,
|
||
|
|
|
||
|
|
// Bundler mode
|
||
|
|
"moduleResolution": "bundler",
|
||
|
|
"allowImportingTsExtensions": true,
|
||
|
|
"verbatimModuleSyntax": true,
|
||
|
|
"noEmit": true,
|
||
|
|
|
||
|
|
// Best practices
|
||
|
|
"strict": true,
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"noFallthroughCasesInSwitch": true,
|
||
|
|
|
||
|
|
// Some stricter flags (disabled by default)
|
||
|
|
"noUnusedLocals": false,
|
||
|
|
"noUnusedParameters": false,
|
||
|
|
"noPropertyAccessFromIndexSignature": false
|
||
|
|
}
|
||
|
|
}
|