PackwizJS/tsconfig.base.json

25 lines
629 B
JSON
Raw Normal View History

2025-02-07 22:49:49 -06:00
{
"compilerOptions": {
// Enable latest features
2025-02-09 16:50:27 -06:00
"lib": ["ESNext", "DOM"],
2025-02-07 22:49:49 -06:00
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"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)
2025-02-09 17:54:01 -06:00
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true
2025-02-07 22:49:49 -06:00
}
}