-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
36 lines (36 loc) · 1.1 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
{
"exclude": ["node_modules"],
"compilerOptions": {
"target": "es2018",
"module": "ESnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"resolveJsonModule": true,
"strictNullChecks": false,
"baseUrl": ".",
"strictFunctionTypes": false,
"types": ["reflect-metadata", "node", "jest"],
"paths": {
"@/*": ["src/*"],
"Assets/*": ["src/assets/*"],
"Components/*": ["src/components/*"],
"Config/*": ["src/config/*"],
"Constants/*": ["src/constants/*"],
"Interfaces/*": ["src/services/interfaces/*"],
"Models/*": ["src/models/*"],
"Pages/*": ["src/pages/*"],
"Services/*": ["src/services/impl/*"],
"Store/*": ["src/store/*"],
"Utils/*": ["src/utils/*"],
"Validations/*": ["src/validations/*"],
"Views/*": ["src/views/*"]
},
"lib": ["es2018", "dom", "dom.iterable", "scripthost"]
}
}