-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
51 lines (46 loc) · 2.1 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
{
"compilerOptions": {
"target": "es2017",
"lib": ["es2017", "esnext.asynciterable"],
"typeRoots": ["./node_modules/@types", "./src/types"],
"baseUrl": ".",
"outDir": "./dist", // js파일 아웃풋 경로
"paths": {
"@/*": ["./src/*"] // src 절대 경로
},
"module": "commonjs", // import 문법 종류: 'commonjs', 'amd', 'es2015', 'esnext'
"allowJs": true, // ts 파일에서 js 파일 import 허용 여부
"checkJs": true, // 일반 js 파일에서도 에러체크 여부
"declaration": true, // 컴파일 시 .d.ts 파일도 자동으로 함께 생성 (현재 쓰는 모든 타입이 정의된 파일)
"removeComments": true, // 컴파일 시 주석 제거
"moduleResolution": "node",
"pretty": true,
"noEmit": false,
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
/**
* TODO: Refactoring
* 아래 세 가지 옵션 true로 바꾸면 파일들 전부 시뻘개짐 컄
*/
"noImplicitAny": false, // any 타입 금지 여부
"strictNullChecks": false, // null, undefined 타입에 이상한 짓 할 때 에러 내기
"strictPropertyInitialization": false, // class constructor 작성 시 타입 체크 강하게
"strictFunctionTypes": true, // 함수 파라미터 타입 체크 강하게
"alwaysStrict": true, // 자바스크립트 "use strict" 모드 켜기
/**
* TODO: Refactoring
* 아래 두 가지 옵션 true로 바꾸면 빌드 에러 남 컄
*/
"noUnusedLocals": false, // 쓰지 않는 지역변수 있으면 에러 내기
"noUnusedParameters": false, // 쓰지 않는 파라미터 있으면 에러 내기
"noImplicitThis": true, // this 키워드가 any 타입일 경우 에러 내기
"noImplicitReturns": true, // 함수에서 return 빼먹으면 에러 내기
"noFallthroughCasesInSwitch": true, // switch문 이상하면 에러 내기
},
"include": ["./src/**/*"],
"exclude": ["node_modules", "tests", "dist"]
}