]>
Commit | Line | Data |
---|---|---|
6f4e2522 | 1 | { |
63c4db6d | 2 | "compileOnSave": false, |
6f4e2522 | 3 | "compilerOptions": { |
f36da21e | 4 | "downlevelIteration": true, |
63c4db6d C |
5 | "outDir": "./dist/out-tsc", |
6 | "sourceMap": true, | |
7 | "declaration": false, | |
6f4e2522 | 8 | "moduleResolution": "node", |
4348a27d | 9 | "module": "esnext", |
6f4e2522 C |
10 | "emitDecoratorMetadata": true, |
11 | "experimentalDecorators": true, | |
244b4ae3 | 12 | "noImplicitAny": true, |
951ef829 | 13 | "noImplicitThis": true, |
244b4ae3 | 14 | "suppressImplicitAnyIndexErrors":true, |
5b3f86dd | 15 | "alwaysStrict": true, |
93cae479 | 16 | "strictBindCallApply": true, |
f36da21e | 17 | "target": "es2015", |
63c4db6d C |
18 | "typeRoots": [ |
19 | "node_modules/@types" | |
ab32b0fc C |
20 | ], |
21 | "lib": [ | |
16b55259 | 22 | "es2018", |
63c4db6d | 23 | "dom" |
4cb6d457 | 24 | ], |
16b55259 | 25 | "baseUrl": "./", |
4cb6d457 | 26 | "paths": { |
512decf3 | 27 | "video.js": [ "node_modules/video.js/core" ], |
16b55259 C |
28 | "@app/*": [ "src/app/*" ], |
29 | "@shared/*": [ "../shared/*" ], | |
7e37e111 C |
30 | "fs": [ "src/shims/noop.ts" ], |
31 | "http": [ "src/shims/http.ts" ], | |
32 | "https": [ "src/shims/https.ts" ], | |
33 | "path": [ "src/shims/path.ts" ], | |
34 | "stream": [ "src/shims/noop.ts" ], | |
35 | "crypto": [ "src/shims/noop.ts" ] | |
4cb6d457 | 36 | } |
0b18f4aa | 37 | }, |
07524e22 C |
38 | "angularCompilerOptions": { |
39 | "strictInjectionParameters": true, | |
be27ef3b C |
40 | "fullTemplateTypeCheck": true, |
41 | "strictTemplates": true | |
16b55259 | 42 | } |
6f4e2522 | 43 | } |