禁用严格检查

This commit is contained in:
York
2025-02-20 13:30:22 +08:00
parent 690e48cbc5
commit 1c45b05000
2 changed files with 4 additions and 4 deletions

View File

@ -17,8 +17,8 @@
/* Linting */ /* Linting */
"strict": true, "strict": true,
"noUnusedLocals": true, "noUnusedLocals": false, // 修改这一行
"noUnusedParameters": true, "noUnusedParameters": false, // 修改这一行
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true "noUncheckedSideEffectImports": true
}, },

View File

@ -15,8 +15,8 @@
/* Linting */ /* Linting */
"strict": true, "strict": true,
"noUnusedLocals": true, "noUnusedLocals": false, // 修改这一行
"noUnusedParameters": true, "noUnusedParameters": false, // 修改这一行
"noFallthroughCasesInSwitch": true, "noFallthroughCasesInSwitch": true,
"noUncheckedSideEffectImports": true "noUncheckedSideEffectImports": true
}, },