aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r--client/tsconfig.json14
1 files changed, 10 insertions, 4 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json
index beca79e01..e46528d1c 100644
--- a/client/tsconfig.json
+++ b/client/tsconfig.json
@@ -5,6 +5,7 @@
5 "sourceMap": true, 5 "sourceMap": true,
6 "declaration": false, 6 "declaration": false,
7 "moduleResolution": "node", 7 "moduleResolution": "node",
8 "module": "esnext",
8 "emitDecoratorMetadata": true, 9 "emitDecoratorMetadata": true,
9 "experimentalDecorators": true, 10 "experimentalDecorators": true,
10 "noImplicitAny": true, 11 "noImplicitAny": true,
@@ -27,6 +28,7 @@
27 "baseUrl": "src", 28 "baseUrl": "src",
28 "paths": { 29 "paths": {
29 "@app/*": [ "app/*" ], 30 "@app/*": [ "app/*" ],
31 "@shared/*": [ "../../shared/*" ],
30 "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ], 32 "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ],
31 "fs": [ "./shims/noop" ], 33 "fs": [ "./shims/noop" ],
32 "http": [ "./shims/http" ], 34 "http": [ "./shims/http" ],
@@ -40,11 +42,15 @@
40 "strictInjectionParameters": true, 42 "strictInjectionParameters": true,
41 "fullTemplateTypeCheck": true 43 "fullTemplateTypeCheck": true
42 }, 44 },
45 "include": [
46 "./src",
47 "../../shared"
48 ],
43 "exclude": [ 49 "exclude": [
50 "../../node_modules",
44 "../node_modules", 51 "../node_modules",
45 "node_modules", 52 "../dist",
46 "dist", 53 "../../server",
47 "../server", 54 "../src/**/*.spec.ts"
48 "src/**/*.spec.ts"
49 ] 55 ]
50} 56}