]>
Commit | Line | Data |
---|---|---|
6f4e2522 | 1 | { |
63c4db6d | 2 | "compileOnSave": false, |
6f4e2522 | 3 | "compilerOptions": { |
63c4db6d C |
4 | "outDir": "./dist/out-tsc", |
5 | "sourceMap": true, | |
6 | "declaration": false, | |
6f4e2522 | 7 | "moduleResolution": "node", |
6f4e2522 C |
8 | "emitDecoratorMetadata": true, |
9 | "experimentalDecorators": true, | |
244b4ae3 | 10 | "noImplicitAny": true, |
951ef829 | 11 | "noImplicitThis": true, |
244b4ae3 | 12 | "suppressImplicitAnyIndexErrors":true, |
5b3f86dd | 13 | "alwaysStrict": true, |
63c4db6d C |
14 | "target": "es5", |
15 | "typeRoots": [ | |
16 | "node_modules/@types" | |
ab32b0fc C |
17 | ], |
18 | "lib": [ | |
63c4db6d | 19 | "es2017", |
920d2d2b C |
20 | "es2016", |
21 | "es2015", | |
63c4db6d | 22 | "dom" |
4cb6d457 | 23 | ], |
f2e05ffe C |
24 | "types": [ |
25 | "jasmine" | |
26 | ], | |
4cb6d457 C |
27 | "baseUrl": "src", |
28 | "paths": { | |
6cca7360 | 29 | "@app/*": [ "app/*" ], |
3ea9a1c3 WL |
30 | "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ], |
31 | "fs": [ "./shims/noop" ], | |
32 | "http": [ "./shims/http" ], | |
33 | "https": [ "./shims/https" ], | |
34 | "path": [ "./shims/path" ], | |
35 | "stream": [ "./shims/noop" ], | |
36 | "crypto": [ "./shims/noop" ] | |
4cb6d457 | 37 | } |
0b18f4aa | 38 | }, |
07524e22 C |
39 | "angularCompilerOptions": { |
40 | "strictInjectionParameters": true, | |
41 | "fullTemplateTypeCheck": true | |
42 | }, | |
0b18f4aa C |
43 | "exclude": [ |
44 | "../node_modules", | |
45 | "node_modules", | |
46 | "dist", | |
f2e05ffe C |
47 | "../server", |
48 | "src/**/*.spec.ts" | |
0b18f4aa | 49 | ] |
6f4e2522 | 50 | } |