-
Notifications
You must be signed in to change notification settings - Fork 113
/
Copy pathtsconfig.json
48 lines (48 loc) · 1.02 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
{
"compilerOptions": {
"strictPropertyInitialization": false,
// tsc
"target": "esnext",
"module": "esnext",
// strict와 관련된 모든 속성이 true로 변경됨
"strict": true,
// @ts-check와 같은 효과를 내는 옵션은 checkJs
"allowJs": true,
// 컴파일된 파일 출력 경로
"outDir": "dist",
"importHelpers": true,
// 프로미스 베이스
"moduleResolution": "node",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"lib": [
"esnext",
"dom",
"dom.iterable",
"scripthost"
],
// 타입이 정해져있지 않은 코드를 any라도 지정해야한다고 제한
"noImplicitAny": true,
"baseUrl": ".",
"types": ["node"],
"paths": {
"~/*": [
"*"
],
"@/*": [
"src/packages/*"
],
},
"typeRoots": [
"src/types"
]
},
"include": [
"**/*.ts",
],
"exclude": [
"node_modules",
"dist"
] // 기본값
}