This commit is contained in:
alorig
2025-11-09 22:36:45 +05:00
parent 1f8f50d019
commit c08a4c7bd6
2 changed files with 5 additions and 3 deletions

View File

@@ -5,7 +5,9 @@
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"build": "vite build",
"build:check": "tsc -b && vite build",
"type-check": "tsc -b --noEmit",
"lint": "eslint .",
"preview": "vite preview"
},

View File

@@ -17,8 +17,8 @@
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true
},