-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
59 lines (59 loc) · 1.54 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
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"jsx": "preserve",
"allowJs": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"strict": false,
"noEmit": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"@assets": ["src/assets"],
"@assets/*": ["src/assets/*"],
"@components": ["src/components"],
"@components/*": ["src/components/*"],
"@ui": ["src/ui"],
"@ui/*": ["src/ui/*"],
"@hoc": ["src/hoc"],
"@hoc/*": ["src/hoc/*"],
"@utils": ["src/utils"],
"@utils/*": ["src/utils/*"],
"@libs": ["src/libs"],
"@libs/*": ["src/libs/*"],
"@interfaces": ["src/interfaces"],
"@interfaces/*": ["src/interfaces/*"],
"@actions": ["src/actions"],
"@actions/*": ["src/actions/*"],
"@store": ["src/store"],
"@store/*": ["src/store/*"],
"@constants": ["src/constants"],
"@constants/*": ["src/constants/*"]
}
},
"exclude": [
"node_modules",
"dist",
".next",
"out",
"next.config.js",
".babelrc",
"bundles",
"coverage",
"test/*"
],
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"]
}