-
Notifications
You must be signed in to change notification settings - Fork 3
/
tsconfig.json
62 lines (60 loc) · 2.14 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
62
{
"compilerOptions": {
"types": ["node"],
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
"declaration": true, //컴파일시 .d.ts 파일도 자동으로 함께생성 (현재쓰는 모든 타입이 정의된 파일)
"allowSyntheticDefaultImports": true, // default export가 없는 모듈에서 default imports를 허용합니다. 코드 방출에는 영향을 주지 않으며, 타입 검사만 수행합니다
"typeRoots": ["./@types", "./node_modules/@types"],
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"esModuleInterop": true, // 기본값 - false, CommonJS에서 존재하지 않는 기본 내보내기 설정
"removeComments": true, // 컴파일시 주석제거
"noImplicitAny": true, // any 허용 x
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true, //함수에서 return 빼먹으면 에러내기
"baseUrl": "./", // baseUrl을 기준으로 관련된 위치에 모듈 이름의 경로 매핑 목록을 나열합니다.
"paths": {
"@/*": ["src/*"],
"pages/*": ["src/pages/*"],
"components/*": ["src/components/*"],
"hooks/*": ["src/hooks/*"],
"contexts/*": ["src/contexts/*"],
"types/*": ["src/types/*"],
"utils/*": ["src/utils/*"],
"apis/*": ["src/apis/*"],
"constants/*": ["src/constants/*"],
"states/*": ["src/states/*"],
"styles/*": ["src/styles/*"],
"assets/*": ["src/assets/*"]
}
},
"include": [
"src",
"src/**/*.ts",
"src/**/*.tsx",
"src/**/*.js",
"src/**/*.d.ts",
"src/firebase-messaging-sw.js"
], //컴파일할 파일 경로 목록
"exclude": [
//컴파일에서 제외할 파일 경로 목록
"node_modules"
],
"ts-node": {
"require": ["tsconfig-paths/register"]
},
"references": [{ "path": "./tsconfig.node.json" }]
}