Skip to content

Commit bc6c7e5

Browse files
committed
feature : Vercel 프로젝트 배포 환경 설정
1 parent e972c81 commit bc6c7e5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

tsconfig.app.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
/* Linting */
1818
"strict": true,
19-
"noUnusedLocals": true,
20-
"noUnusedParameters": true,
19+
"noUnusedLocals": false, // 사용되지 않는 로컬 변수 경고 끄기
20+
"noUnusedParameters": false, // 사용되지 않는 파라미터 경고 끄기
2121
"noFallthroughCasesInSwitch": true
2222
},
2323
"include": ["src"]

tsconfig.node.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@
1414

1515
/* Linting */
1616
"strict": true,
17-
"noUnusedLocals": true,
18-
"noUnusedParameters": true,
17+
"noUnusedLocals": false, // 사용되지 않는 로컬 변수 경고 끄기
18+
"noUnusedParameters": false, // 사용되지 않는 파라미터 경고 끄기
1919
"noFallthroughCasesInSwitch": true
2020
},
2121
"include": ["vite.config.ts"]

0 commit comments

Comments
 (0)