diff options
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r-- | client/tsconfig.json | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json index 3f9986f8a..a0fbc27c6 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json | |||
@@ -28,6 +28,7 @@ | |||
28 | "baseUrl": "src", | 28 | "baseUrl": "src", |
29 | "paths": { | 29 | "paths": { |
30 | "@app/*": [ "app/*" ], | 30 | "@app/*": [ "app/*" ], |
31 | "@shared/*": [ "../../shared/*" ], | ||
31 | "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ], | 32 | "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ], |
32 | "fs": [ "./shims/noop" ], | 33 | "fs": [ "./shims/noop" ], |
33 | "http": [ "./shims/http" ], | 34 | "http": [ "./shims/http" ], |
@@ -41,11 +42,14 @@ | |||
41 | "strictInjectionParameters": true, | 42 | "strictInjectionParameters": true, |
42 | "fullTemplateTypeCheck": true | 43 | "fullTemplateTypeCheck": true |
43 | }, | 44 | }, |
45 | "include": [ | ||
46 | "../../shared" | ||
47 | ], | ||
44 | "exclude": [ | 48 | "exclude": [ |
49 | "../../node_modules", | ||
45 | "../node_modules", | 50 | "../node_modules", |
46 | "node_modules", | 51 | "../dist", |
47 | "dist", | 52 | "../../server", |
48 | "../server", | 53 | "../src/**/*.spec.ts" |
49 | "src/**/*.spec.ts" | ||
50 | ] | 54 | ] |
51 | } | 55 | } |