diff options
author | Chocobozzz <me@florianbigard.com> | 2020-06-26 08:37:26 +0200 |
---|---|---|
committer | Chocobozzz <chocobozzz@cpy.re> | 2020-08-07 08:28:14 +0200 |
commit | 583eb04b541175035d6d452ca626a96ebf2b7437 (patch) | |
tree | 114ba0a7004b4b2a7fc77444ef5fcb73414c6e93 /client/tsconfig.json | |
parent | 4504f09f6e85f09b0489debb547a17209d7176ea (diff) | |
download | PeerTube-583eb04b541175035d6d452ca626a96ebf2b7437.tar.gz PeerTube-583eb04b541175035d6d452ca626a96ebf2b7437.tar.zst PeerTube-583eb04b541175035d6d452ca626a96ebf2b7437.zip |
Upgrade to angular 10
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r-- | client/tsconfig.json | 53 |
1 files changed, 11 insertions, 42 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json index a7b690c7b..64266d49d 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json | |||
@@ -1,45 +1,14 @@ | |||
1 | /* | ||
2 | This is a "Solution Style" tsconfig.json file, and is used by editors and TypeScript’s language server to improve development experience. | ||
3 | It is not intended to be used to perform a compilation. | ||
4 | |||
5 | To learn more about this file see: https://angular.io/config/solution-tsconfig. | ||
6 | */ | ||
1 | { | 7 | { |
2 | "compileOnSave": false, | 8 | "files": [], |
3 | "compilerOptions": { | 9 | "references": [ |
4 | "downlevelIteration": true, | 10 | { |
5 | "outDir": "./dist/out-tsc", | 11 | "path": "./tsconfig.app.json" |
6 | "sourceMap": true, | ||
7 | "declaration": false, | ||
8 | "moduleResolution": "node", | ||
9 | "module": "esnext", | ||
10 | "emitDecoratorMetadata": true, | ||
11 | "experimentalDecorators": true, | ||
12 | "noImplicitAny": true, | ||
13 | "noImplicitThis": true, | ||
14 | "suppressImplicitAnyIndexErrors":true, | ||
15 | "alwaysStrict": true, | ||
16 | "importHelpers": true, | ||
17 | "strictBindCallApply": true, | ||
18 | "target": "es2015", | ||
19 | "typeRoots": [ | ||
20 | "node_modules/@types" | ||
21 | ], | ||
22 | "lib": [ | ||
23 | "es2018", | ||
24 | "dom" | ||
25 | ], | ||
26 | "baseUrl": "./", | ||
27 | "paths": { | ||
28 | "video.js": [ "node_modules/video.js/core" ], | ||
29 | "@app/*": [ "src/app/*" ], | ||
30 | "@shared/*": [ "../shared/*" ], | ||
31 | "@root-helpers/*": [ "src/root-helpers/*" ], | ||
32 | "fs": [ "src/shims/noop.ts" ], | ||
33 | "http": [ "src/shims/http.ts" ], | ||
34 | "https": [ "src/shims/https.ts" ], | ||
35 | "path": [ "src/shims/path.ts" ], | ||
36 | "stream": [ "src/shims/noop.ts" ], | ||
37 | "crypto": [ "src/shims/noop.ts" ] | ||
38 | } | 12 | } |
39 | }, | 13 | ] |
40 | "angularCompilerOptions": { | ||
41 | "strictInjectionParameters": true, | ||
42 | "fullTemplateTypeCheck": true, | ||
43 | "strictTemplates": true | ||
44 | } | ||
45 | } | 14 | } |