forked from Between-Departments/dev-FE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
45 lines (38 loc) · 1.38 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
{
"compilerOptions": {
/* Language and Environment */
"target": "ES2020",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"jsx": "react",
"useDefineForClassFields": true,
/* Modules */
"module": "ESNext",
"moduleResolution": "bundler",
"allowImportingTsExtensions": true, // .ts .tsx 를 가져오도록 허용
"resolveJsonModule": true, // json 파일을 모듈로 가져옴
/* JavaScript Support */
// "allowJs": true,
/* Emit */
"declaration": true,
// "emitDeclarationOnly": true,
"noEmit": true, // CI나 Git Hook 같은 타이밍에 정적 타입 체크만 진행해야 하는 경우
/* Interop Constraints */
"isolatedModules": true, // 각 파일을 독립적인 모듈로 처리
"esModuleInterop": true, // jest에서 권장
// "allowSyntheticDefaultImports": true,
// "forceConsistentCasingInFileNames": true,
/* Type Checking */
"strict": true,
// "noUnusedLocals": true, /* local variables aren't read. */
// "noUnusedParameters": true, /* function parameter isn't read. */
// "noFallthroughCasesInSwitch": true /* fallthrough cases in switch statements. */
/* Completeness */
"skipLibCheck": true /* Skip type checking all .d.ts files. */,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}