EUS/tsconfig.json

27 lines
561 B
JSON
Raw Permalink Normal View History

2025-01-01 02:18:50 +00:00
{
"compilerOptions": {
2025-01-08 14:50:10 +00:00
// Enable latest features
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleDetection": "force",
"jsx": "react-jsx",
"allowJs": true,
// Bundler mode
"moduleResolution": "bundler",
2025-01-26 16:40:40 +00:00
"allowImportingTsExtensions": false,
2025-01-08 14:50:10 +00:00
"verbatimModuleSyntax": true,
"noEmit": true,
// Best practices
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
// Some stricter flags
"noUnusedLocals": true,
"noUnusedParameters": true,
"noPropertyAccessFromIndexSignature": true
2025-01-01 02:18:50 +00:00
}
}