aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r--client/tsconfig.json8
1 files changed, 7 insertions, 1 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json
index cb6d39245..60c343867 100644
--- a/client/tsconfig.json
+++ b/client/tsconfig.json
@@ -20,7 +20,13 @@
20 "baseUrl": "src", 20 "baseUrl": "src",
21 "paths": { 21 "paths": {
22 "@app/*": [ "app/*" ], 22 "@app/*": [ "app/*" ],
23 "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ] 23 "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ],
24 "fs": [ "./shims/noop" ],
25 "http": [ "./shims/http" ],
26 "https": [ "./shims/https" ],
27 "path": [ "./shims/path" ],
28 "stream": [ "./shims/noop" ],
29 "crypto": [ "./shims/noop" ]
24 } 30 }
25 } 31 }
26} 32}