elinuxhenrik | f507d92 | 2020-03-19 14:52:24 +0100 | [diff] [blame] | 1 | { |
| 2 | "compileOnSave": false, |
| 3 | "compilerOptions": { |
ychacon | ae54b92 | 2021-03-25 00:31:31 +0100 | [diff] [blame^] | 4 | "baseUrl": "./src", |
elinuxhenrik | f507d92 | 2020-03-19 14:52:24 +0100 | [diff] [blame] | 5 | "downlevelIteration": true, |
| 6 | "outDir": "./dist/out-tsc", |
| 7 | "sourceMap": true, |
| 8 | "declaration": false, |
| 9 | "module": "esnext", |
| 10 | "moduleResolution": "node", |
| 11 | "emitDecoratorMetadata": true, |
| 12 | "experimentalDecorators": true, |
| 13 | "importHelpers": true, |
Lathish | b339e7a | 2020-12-08 21:55:51 +0000 | [diff] [blame] | 14 | "resolveJsonModule": true, |
elinuxhenrik | ad70d41 | 2021-02-15 14:38:02 +0100 | [diff] [blame] | 15 | "target": "es2015", |
ychacon | ae54b92 | 2021-03-25 00:31:31 +0100 | [diff] [blame^] | 16 | "paths": { |
| 17 | "@angular/*": [ "../node_modules/@angular/*" ], |
| 18 | "@app/*": ["app/*"], |
| 19 | "@interfaces/*": ["app/interfaces/*"], |
| 20 | "@ei-coordinator/*": ["app/ei-coordinator/*"], |
| 21 | "@policy/*": ["app/policy/*"], |
| 22 | "@services/*": ["app/services/*"], |
| 23 | "@navigation/*": ["app/navigation/*"], |
| 24 | "@ui/*": ["app/ui/*"], |
| 25 | }, |
elinuxhenrik | f507d92 | 2020-03-19 14:52:24 +0100 | [diff] [blame] | 26 | "typeRoots": [ |
| 27 | "node_modules/@types" |
| 28 | ], |
| 29 | "lib": [ |
| 30 | "es2018", |
| 31 | "dom" |
| 32 | ] |
elinuxhenrik | 91ba494 | 2021-03-08 14:15:36 +0100 | [diff] [blame] | 33 | }, |
| 34 | "angularCompilerOptions": { |
| 35 | "strictTemplates": true, |
| 36 | "fullTemplateTypeCheck": true |
| 37 | } |
elinuxhenrik | f507d92 | 2020-03-19 14:52:24 +0100 | [diff] [blame] | 38 | } |