-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtsconfig.json
44 lines (44 loc) · 1.32 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
{
"extends": "./tsconfig.paths.json",
"compilerOptions": {
"esModuleInterop": true,
"jsx": "preserve",
"strict": true,
"module": "commonjs",
"target": "es6",
"typeRoots": ["node_modules/@types", "./types"],
"baseUrl": ".",
"allowJs": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"incremental": true,
"lib": ["dom", "dom.iterable", "esnext"],
"paths": {
"@components/*": ["./src/components/*"],
"@components": ["./src/components"],
"@constants": ["./src/constants"],
"@constants/*": ["./src/constants/*"],
"@pages/*": ["./src/pages/*"],
"@pages": ["./src/pages"],
"@hoc/*": ["./src/hoc/*"],
"@apis": ["./src/apis"],
"@apis/*": ["./src/apis/*"],
"@config": ["./src/config"],
"@config/*": ["./src/config/*"],
"@hooks": ["./src/hooks"],
"@hooks/*": ["./src/hooks/*"],
"@recoil": ["./src/recoil"],
"@recoil/*": ["./src/recoil/*"],
"@font/*": ["./src/font/*"],
"@utility/*": ["./src/utility/*"],
"@utility": ["./src/utility"],
"@/*": ["./src/*"]
}
},
"include": ["**/*.ts", "**/*.tsx", "**/*.js", "**/*.jsx"],
"exclude": ["node_modules"]
}