-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·53 lines (53 loc) · 2.07 KB
/
tsconfig.json
File metadata and controls
executable file
·53 lines (53 loc) · 2.07 KB
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
/* To learn more about this file see: https://angular.io/config/tsconfig. */
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"paths": {
"@enviroment":["src/environments/environment"],
"@billing-components/*":["src/app/billing/components/*"],
"@billing-models/*":["src/app/billing/models/*"],
"@billing-services/*":["src/app/billing/services/*"],
"@billing-utils/*":["src/app/billing/utils/*"],
"@billing-modules/*":["src/app/billing/modules/*"],
"@billing-module-exchange-rate/*":["src/app/billing/modules/exchange-rate/*"],
"@billing-module-invoice-receipt/*":["src/app/billing/modules/invoice-receipt/*"],
"@billing-module-internal-guide/*":["src/app/billing/modules/internal-guide/*"],
"@billing-module-inventory-taking/*":["src/app/billing/modules/inventory-taking/*"],
"@billing-module-inventory-article/*":["src/app/billing/modules/inventory-article/*"],
"@billing-module-business-partner/*":["src/app/billing/modules/business-partner/*"],
"@billing-module-list-price/*":["src/app/billing/modules/list-price/*"],
"@billing/*":["src/app/billing/*"],
"@auth/*":["src/app/auth/*"],
"@configuration/*":["src/app/configuration/*"],
"@shared/*":["src/app/shared/*"],
"@shared-components/*":["src/app/shared/components/*"],
},
"outDir": "./dist/out-tsc",
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"downlevelIteration": true,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"useDefineForClassFields": false,
"lib": [
"ES2022",
"dom"
]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}