forked from azerothcore/Keira3
-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
33 lines (33 loc) · 1001 Bytes
/
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
{
"compileOnSave": false,
"compilerOptions": {
"module": "es2020",
"resolveJsonModule": true,
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "ES2022",
"typeRoots": ["node_modules/@types"],
"lib": ["es2017", "es2016", "es2015", "dom"],
"baseUrl": "src",
"allowSyntheticDefaultImports": true,
"paths": {
"@keira-config/*": ["app/config/*"],
"@keira-shared/*": ["app/shared/*"],
"@keira-abstract/*": ["app/shared/abstract/*"],
"@keira-constants/*": ["app/shared/constants/*"],
"@keira-types/*": ["app/shared/types/*"],
"@keira-testing/*": ["app/shared/testing/*"]
},
"useDefineForClassFields": false
},
"include": ["main.ts", "src/**/*"],
"exclude": ["node_modules"],
"angularCompilerOptions": {
"strictTemplates": true,
"strictInjectionParameters": true
}
}