-
Notifications
You must be signed in to change notification settings - Fork 85
/
tsconfig.json
44 lines (44 loc) · 1.38 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
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"outDir": "./node_modules/.out-tsc/base",
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// leave this as CommonJS, so scripts can be run with 'npx ts-node'
// see https://github.com/TypeStrong/ts-node#commonjs-vs-native-ecmascript-modules
"module": "CommonJS",
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"paths": {
"ish-core/*": ["src/app/core/*"],
"ish-shared/*": ["src/app/shared/*"],
"ish-shell/*": ["src/app/shell/*"],
"organization-management": [
"projects/organization-management/src/app/exports"
],
"requisition-management": [
"projects/requisition-management/src/app/exports"
],
"swiper_angular": ["node_modules/swiper/angular"]
},
"lib": ["ES2022", "dom"],
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitAny": true,
"useDefineForClassFields": false,
"resolveJsonModule": true
},
"angularCompilerOptions": {
"fullTemplateTypeCheck": true,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
},
"exclude": ["e2e/**"]
}