mirror of
https://git.stupid.fish/teidesu/scripts.git
synced 2025-07-27 18:22:10 +10:00
26 lines
609 B
JSON
26 lines
609 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"moduleDetection": "force",
|
|
"module": "ESNext",
|
|
|
|
// Bundler mode
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"allowJs": true,
|
|
|
|
// Best practices
|
|
"strict": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": false,
|
|
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
// Some stricter flags (disabled by default)
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noEmit": true,
|
|
"verbatimModuleSyntax": true,
|
|
"skipLibCheck": true
|
|
}
|
|
}
|