We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e972c81 commit bc6c7e5Copy full SHA for bc6c7e5
tsconfig.app.json
@@ -16,8 +16,8 @@
16
17
/* Linting */
18
"strict": true,
19
- "noUnusedLocals": true,
20
- "noUnusedParameters": true,
+ "noUnusedLocals": false, // 사용되지 않는 로컬 변수 경고 끄기
+ "noUnusedParameters": false, // 사용되지 않는 파라미터 경고 끄기
21
"noFallthroughCasesInSwitch": true
22
},
23
"include": ["src"]
tsconfig.node.json
@@ -14,8 +14,8 @@
14
15
"include": ["vite.config.ts"]
0 commit comments