-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
44 lines (40 loc) · 1.05 KB
/
tsconfig.json
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
44
{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"allowImportingTsExtensions": true,
"noEmit": true,
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
/** Strict */
"strict": true,
"forceConsistentCasingInFileNames": true, // 파일 대 소문자 구분
"noUncheckedIndexedAccess": true, // 인덱스로 배열에 접근 시 타입 안전성 검사
"allowUnreachableCode": false // 도달할 수 없는 코드 허용
},
"references": [
{
"path": "packages/client-common/design"
},
{
"path": "packages/client-common/hooks"
},
{
"path": "packages/client-common/use-stop-watch"
},
{
"path": "packages/clock/client"
}
],
"exclude": ["packages/**/dist/**"],
"include": []
}