-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
43 lines (37 loc) · 1.06 KB
/
tsconfig.json
File metadata and controls
43 lines (37 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"compilerOptions": {
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
// JS 코드도 허용 → 급하면 js 그대로 써도 됨
"allowJs": true,
// 타입 검사는 느슨하게 → 외부 라이브러리 에러 무시
"skipLibCheck": true,
"strict": false, // 엄격 모드 해제 (빠른 개발용)
"noUnusedLocals": false, // 안 쓰는 변수 경고 X
"noUnusedParameters": false, // 안 쓰는 파라미터 경고 X
"noEmit": true,
// 모듈/리졸브
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
// 빌드 캐시 → 속도 ↑
"incremental": true,
"plugins": [{ "name": "next" }],
"paths": {
"@/*": ["./src/*"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"src/components/PortOneDemoButton.ㅓsx",
"src/lib/portone.js",
"public/firebase-messaging-sw.js"
],
"exclude": ["node_modules"]
}