-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
55 lines (55 loc) · 1.92 KB
/
tsconfig.json
File metadata and controls
55 lines (55 loc) · 1.92 KB
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
{
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist",
"allowJs": true,
// 이하 모드는 필요에 따라 설정 변경
"strict": false,
// "noImplicitAny": true, /* 'any' 타입으로 구현된 표현식 혹은 정의 에러처리 여부 */
// "strictNullChecks": true, /* 엄격한 null 확인 여부 */
// "strictFunctionTypes": true, /* 함수 타입에 대한 엄격한 확인 여부 */
// "strictBindCallApply": true, /* 함수에 엄격한 'bind', 'call' 그리고 'apply' 메소드 사용 여부 */
// "strictPropertyInitialization": true, /* 클래스의 값 초기화에 엄격한 확인 여부 */
// "noImplicitThis": true, /* 'any' 타입으로 구현된 'this' 표현식 에러처리 여부 */
// "skipLibCheck": true, /* 정의 파일의 타입 확인을 건너 뛸 지 여부 */
"target": "es6",
"lib": ["es6", "es2017", "dom", "dom.iterable", "esnext"],
"sourceMap": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"module": "es6",
"moduleResolution": "node",
"importHelpers": true,
"resolveJsonModule": true,
"jsx": "react",
"types": ["node", "jest"],
"typeRoots": ["./typings", "./src/**/*.ts", "./src/**/*.tsx"],
"declaration": true,
"declarationMap": true,
"declarationDir": "dist/types",
"paths": {
"@src/*": ["src/*"],
"@assets/*": ["src/assets/*"],
"@components/*": ["src/components/*"],
"@helpers/*": ["src/helpers/*"],
"@hooks/*": ["src/hooks/*"]
}
},
// "include": ["typings", "src/**/*"],
"include": [
"typings",
"./src/**/*.ts",
"./src/**/*.tsx",
"src/components/Icon/Icons/Specific/CohortModeAdvancedIcon"
],
"exclude": [
"node_modules",
"dist",
"**/*.test.js",
"src/data/*",
"src/components/paper/*",
"src/components/notifications/*",
"src/components/__tests__/utils.js"
]
}