-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
86 lines (86 loc) · 1.58 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"jsx": "preserve",
"allowJs": true,
"sourceMap": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"types": [
"node",
"jest"
],
"typeRoots": [
"node_modules/@types"
],
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"noImplicitAny": false,
"resolveJsonModule": true,
"isolatedModules": true,
"baseUrl": ".",
"paths": {
"@app/shared/styles": [
"libs/shared/styles/src/index.ts"
],
"@app/auth": [
"libs/auth/src/index.ts"
],
"@/api/*": [
"api/*"
],
"@/components/*": [
"components/*"
],
"@/constants/*": [
"constants/*"
],
"@/contexts/*": [
"contexts/*"
],
"@/hooks/*": [
"hooks/*"
],
"@/redux/*": [
"redux/*"
],
"@/routing/*": [
"routing/*"
],
"@/services/*": [
"services/*"
],
"@/stores/*": [
"stores/*"
],
"@/types/*": [
"types/*"
],
"@/utils/*": [
"utils/*"
],
},
"target": "es2015",
"lib": [
"es2017",
"dom"
],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"module": "esnext",
"moduleResolution": "node"
},
"include": [],
"files": [],
"references": [
{
"path": "./tsconfig.spec.json"
}
],
"exclude": [
"node_modules",
]
}