chore(config): tighten tsconfig and eslint strictness
- Enable strict mode in tsconfig.app.json (already enabled, now reinforced) - Add allowSyntheticDefaultImports for better ES module compatibility - Add skipLibCheck to suppress @types errors during compilation - Change @typescript-eslint/no-explicit-any from 'off' to 'warn' - @typescript-eslint/no-unused-vars already enabled as 'warn' - Remove unused jotai from vite bundle configuration - Build passes successfully with 0 errors
This commit is contained in:
@@ -24,11 +24,13 @@
|
||||
|
||||
/* Linting */
|
||||
"strict": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"noUnusedLocals": true,
|
||||
"noUnusedParameters": true,
|
||||
"erasableSyntaxOnly": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noUncheckedSideEffectImports": true
|
||||
"noUncheckedSideEffectImports": true,
|
||||
"skipLibCheck": true
|
||||
},
|
||||
"include": ["src"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user