aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/tsconfig.json
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2020-04-17 11:20:12 +0200
committerChocobozzz <me@florianbigard.com>2020-04-17 14:12:43 +0200
commit7e37e111116e41530749b88327bc601cb39ade03 (patch)
treea141a84b6999029084629d45a3d5addbfa34e603 /client/tsconfig.json
parentbb3933ef370c46be6090e4e522c6e3f5b7144f4c (diff)
downloadPeerTube-7e37e111116e41530749b88327bc601cb39ade03.tar.gz
PeerTube-7e37e111116e41530749b88327bc601cb39ade03.tar.zst
PeerTube-7e37e111116e41530749b88327bc601cb39ade03.zip
Fix videojs typings
Diffstat (limited to 'client/tsconfig.json')
-rw-r--r--client/tsconfig.json13
1 files changed, 6 insertions, 7 deletions
diff --git a/client/tsconfig.json b/client/tsconfig.json
index 3c671e579..d9e798f91 100644
--- a/client/tsconfig.json
+++ b/client/tsconfig.json
@@ -26,13 +26,12 @@
26 "paths": { 26 "paths": {
27 "@app/*": [ "src/app/*" ], 27 "@app/*": [ "src/app/*" ],
28 "@shared/*": [ "../shared/*" ], 28 "@shared/*": [ "../shared/*" ],
29 "video.js": [ "node_modules/video.js/dist/alt/video.core" ], 29 "fs": [ "src/shims/noop.ts" ],
30 "fs": [ "src/shims/noop" ], 30 "http": [ "src/shims/http.ts" ],
31 "http": [ "src/shims/http" ], 31 "https": [ "src/shims/https.ts" ],
32 "https": [ "src/shims/https" ], 32 "path": [ "src/shims/path.ts" ],
33 "path": [ "src/shims/path" ], 33 "stream": [ "src/shims/noop.ts" ],
34 "stream": [ "src/shims/noop" ], 34 "crypto": [ "src/shims/noop.ts" ]
35 "crypto": [ "src/shims/noop" ]
36 } 35 }
37 }, 36 },
38 "angularCompilerOptions": { 37 "angularCompilerOptions": {