diff options
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r-- | client/tsconfig.json | 71 |
1 files changed, 52 insertions, 19 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json index 2345ca289..1668cfced 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json | |||
@@ -10,12 +10,12 @@ | |||
10 | "experimentalDecorators": true, | 10 | "experimentalDecorators": true, |
11 | "noImplicitAny": true, | 11 | "noImplicitAny": true, |
12 | "noImplicitThis": true, | 12 | "noImplicitThis": true, |
13 | "suppressImplicitAnyIndexErrors":true, | 13 | "suppressImplicitAnyIndexErrors": true, |
14 | "alwaysStrict": true, | 14 | "alwaysStrict": true, |
15 | "importHelpers": true, | 15 | "importHelpers": true, |
16 | "allowSyntheticDefaultImports": true, | 16 | "allowSyntheticDefaultImports": true, |
17 | "strictBindCallApply": true, | 17 | "strictBindCallApply": true, |
18 | "target": "es2017", | 18 | "target": "ES2022", |
19 | "typeRoots": [ | 19 | "typeRoots": [ |
20 | "node_modules/@types" | 20 | "node_modules/@types" |
21 | ], | 21 | ], |
@@ -29,23 +29,56 @@ | |||
29 | ], | 29 | ], |
30 | "baseUrl": "./", | 30 | "baseUrl": "./", |
31 | "paths": { | 31 | "paths": { |
32 | "hls.js": [ "node_modules/hls.js/dist/hls.light" ], | 32 | "hls.js": [ |
33 | "video.js": [ "node_modules/video.js/core" ], | 33 | "node_modules/hls.js/dist/hls.light" |
34 | "@app/*": [ "src/app/*" ], | 34 | ], |
35 | "@shared/models/*": [ "../shared/models/*" ], | 35 | "video.js": [ |
36 | "@shared/models": [ "../shared/models" ], | 36 | "node_modules/video.js/core" |
37 | "@shared/core-utils": [ "../shared/core-utils" ], | 37 | ], |
38 | "@shared/core-utils/*": [ "../shared/core-utils/*" ], | 38 | "@app/*": [ |
39 | "@shared/typescript-utils": [ "../shared/typescript-utils" ], | 39 | "src/app/*" |
40 | "@shared/typescript-utils/*": [ "../shared/typescript-utils/*" ], | 40 | ], |
41 | "@root-helpers/*": [ "src/root-helpers/*" ], | 41 | "@shared/models/*": [ |
42 | "fs": [ "src/shims/noop.ts" ], | 42 | "../shared/models/*" |
43 | "http": [ "src/shims/http.ts" ], | 43 | ], |
44 | "https": [ "src/shims/https.ts" ], | 44 | "@shared/models": [ |
45 | "path": [ "src/shims/path.ts" ], | 45 | "../shared/models" |
46 | "stream": [ "src/shims/stream.ts" ], | 46 | ], |
47 | "crypto": [ "src/shims/noop.ts" ] | 47 | "@shared/core-utils": [ |
48 | } | 48 | "../shared/core-utils" |
49 | ], | ||
50 | "@shared/core-utils/*": [ | ||
51 | "../shared/core-utils/*" | ||
52 | ], | ||
53 | "@shared/typescript-utils": [ | ||
54 | "../shared/typescript-utils" | ||
55 | ], | ||
56 | "@shared/typescript-utils/*": [ | ||
57 | "../shared/typescript-utils/*" | ||
58 | ], | ||
59 | "@root-helpers/*": [ | ||
60 | "src/root-helpers/*" | ||
61 | ], | ||
62 | "fs": [ | ||
63 | "src/shims/noop.ts" | ||
64 | ], | ||
65 | "http": [ | ||
66 | "src/shims/http.ts" | ||
67 | ], | ||
68 | "https": [ | ||
69 | "src/shims/https.ts" | ||
70 | ], | ||
71 | "path": [ | ||
72 | "src/shims/path.ts" | ||
73 | ], | ||
74 | "stream": [ | ||
75 | "src/shims/stream.ts" | ||
76 | ], | ||
77 | "crypto": [ | ||
78 | "src/shims/noop.ts" | ||
79 | ] | ||
80 | }, | ||
81 | "useDefineForClassFields": false | ||
49 | }, | 82 | }, |
50 | "files": [ | 83 | "files": [ |
51 | "src/polyfills.ts" | 84 | "src/polyfills.ts" |