-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
61 lines (61 loc) · 2.3 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"compilerOptions": {
"target": "ES6",
"module": "CommonJS",
"lib": ["ESNext"],
"moduleResolution": "Node",
/* Declaration Options */
"declaration": true,
/* Compile options */
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
/* Web */
"allowJs": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
// "isolatedModules": true,
/* Enable all strict type-checking options. */
"allowUnreachableCode": false, // 도달 불가능한 코드에 대한 허용 여부.
"allowUnusedLabels": false, // 사용하지 않는 라벨에 대한 허용 여부
"alwaysStrict": true,
"isolatedModules": true,
"noFallthroughCasesInSwitch": true, // 잘못 적혔다고 판단되는 switch문에 대한 에러 발생
"noImplicitAny": false,
"noImplicitReturns": true, // 함수의 모든 경로가 값을 반환하지 않으면 에러 발생
"noImplicitThis": true,
"noStrictGenericChecks": true, // 함수에서 generic의 엄격한 검사 해제 여부
"noUnusedLocals": true, // 사용안된 지역변수에 대한 오류 보고 여부
"noUnusedParameters": true, // 사용안된 파라미터에 대한 오류 보고 여부
"strict": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"suppressExcessPropertyErrors": false, // 객체 리터럴에 대한 초과 속성 검사 억제 여부
"suppressImplicitAnyIndexErrors": false, // 인덱스 서명이없는 개체를 인덱싱하는 경우 --noImplicitAny 오류 억제여부
/* Debugging Options */
"listEmittedFiles": false, // 컴파일된 결과 파일들 이름을 터미널에 출력
"listFiles": false, // 컴파일된 파일들 이름을 터미널에 출력
"pretty": true, // 에러 메시지를 예쁘게 설정
"sourceMap": false,
"traceResolution": false, // 모듈 검색에 대한 로그메세지 출력 여부
"outDir": "dist",
},
"include": [
"**/*.ts",
"**/*.tsx",
"**/*.js",
"**/*.jsx"
],
"exclude": [
"node_modules",
"dist",
"test",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx",
]
}