diff options
author | Chocobozzz <me@florianbigard.com> | 2021-08-17 14:01:51 +0200 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2021-08-17 14:06:56 +0200 |
commit | 1d4591fd9c724c9409da31612f6d8c008f1cb5e4 (patch) | |
tree | edf37dad3e3424d6b7a0c5149f47da88124e0286 /client/tsconfig.json | |
parent | 1378c0d343028f3d40d7d795422684ab9e6a1599 (diff) | |
download | PeerTube-1d4591fd9c724c9409da31612f6d8c008f1cb5e4.tar.gz PeerTube-1d4591fd9c724c9409da31612f6d8c008f1cb5e4.tar.zst PeerTube-1d4591fd9c724c9409da31612f6d8c008f1cb5e4.zip |
Remove solution style ts config
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r-- | client/tsconfig.json | 72 |
1 files changed, 61 insertions, 11 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json index 64266d49d..fdf4dc777 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json | |||
@@ -1,14 +1,64 @@ | |||
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 | */ | ||
7 | { | 1 | { |
8 | "files": [], | 2 | "compileOnSave": false, |
9 | "references": [ | 3 | "compilerOptions": { |
10 | { | 4 | "downlevelIteration": true, |
11 | "path": "./tsconfig.app.json" | 5 | "outDir": "./dist/out-tsc", |
6 | "sourceMap": true, | ||
7 | "declaration": false, | ||
8 | "moduleResolution": "node", | ||
9 | "module": "esnext", | ||
10 | "experimentalDecorators": true, | ||
11 | "noImplicitAny": true, | ||
12 | "noImplicitThis": true, | ||
13 | "suppressImplicitAnyIndexErrors":true, | ||
14 | "alwaysStrict": true, | ||
15 | "importHelpers": true, | ||
16 | "strictBindCallApply": true, | ||
17 | "target": "es2015", | ||
18 | "typeRoots": [ | ||
19 | "node_modules/@types" | ||
20 | ], | ||
21 | "lib": [ | ||
22 | "es2018", | ||
23 | "es2017", | ||
24 | "es2016", | ||
25 | "es2015", | ||
26 | "dom" | ||
27 | ], | ||
28 | "baseUrl": "./", | ||
29 | "paths": { | ||
30 | "hls.js": [ "node_modules/hls.js/dist/hls.light" ], | ||
31 | "video.js": [ "node_modules/video.js/core" ], | ||
32 | "@app/*": [ "src/app/*" ], | ||
33 | "@shared/models/*": [ "../shared/models/*" ], | ||
34 | "@shared/models": [ "../shared/models" ], | ||
35 | "@shared/core-utils": [ "../shared/core-utils" ], | ||
36 | "@shared/core-utils/*": [ "../shared/core-utils/*" ], | ||
37 | "@root-helpers/*": [ "src/root-helpers/*" ], | ||
38 | "fs": [ "src/shims/noop.ts" ], | ||
39 | "http": [ "src/shims/http.ts" ], | ||
40 | "https": [ "src/shims/https.ts" ], | ||
41 | "path": [ "src/shims/path.ts" ], | ||
42 | "stream": [ "src/shims/stream.ts" ], | ||
43 | "crypto": [ "src/shims/noop.ts" ] | ||
12 | } | 44 | } |
13 | ] | 45 | }, |
46 | "files": [ | ||
47 | "src/polyfills.ts" | ||
48 | ], | ||
49 | "include": [ | ||
50 | "src/main*.ts", | ||
51 | "src/**/*.d.ts", | ||
52 | "src/shims/*.ts" | ||
53 | ], | ||
54 | "exclude": [ | ||
55 | "../node_modules", | ||
56 | "../server" | ||
57 | ], | ||
58 | "angularCompilerOptions": { | ||
59 | "strictInjectionParameters": true, | ||
60 | "fullTemplateTypeCheck": true, | ||
61 | "strictTemplates": true, | ||
62 | "enableI18nLegacyMessageIdFormat": false | ||
63 | } | ||
14 | } | 64 | } |