-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
44 lines (42 loc) · 1.57 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": {
"types": ["axios"],
"target": "esnext",
"module": "esnext",
"baseUrl": ".",
"paths": {
"components/*": ["src/components/*"],
"hooks/*": ["src/hooks/*"],
"pages/*": ["src/pages/*"],
"assets/*": ["src/assets/*"],
"styles/*": ["src/styles/*"],
"utils/*": ["src/utils/*"],
"atoms/*": ["src/atoms/*"]
},
"useDefineForClassFields": true,
// "lib": ["ES2020", "DOM", "DOM.Iterable"],
"lib": ["dom", "dom.iterable", "esnext"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
// "allowImportingTsExtensions": true,
// "resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"outDir": "./dist", //컴파일시 ts파일을 dist폴더에 js파일로 변경
// "rootDir": "src", //루트 디렉토리 src로 설정
/* Linting */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"sourceMap": true, //console에서 경로 보이도록
"noImplicitAny": true, // any타입 금지여부
"strictNullChecks": true, // undefined와 null에게 구체적인 타입을 부여해 이 둘에 대한 참조를 막고 런타임전에 에러를 발생시킴
"allowJs": true, // js 파일들 ts에서 import해서 쓸 수 있는지 (혹여나 필요할 수도 있어서?)
"allowSyntheticDefaultImports": true //ts에서 Synthetic기본 import허용
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}