X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=6ac5e6a9e46e261a05e32c4c36607e4bcb1bb99b;hb=991feec9a3f371e28274884f7635dc2e57dca284;hp=8ce9c5f96c1e54a3dc253465ed481c5b78c91b83;hpb=920d2d2b4c5d9206671171a8a2aee233a7d5dab2;p=oweals%2Fpeertube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index 8ce9c5f96..6ac5e6a9e 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -19,7 +19,20 @@ ], "baseUrl": "src", "paths": { - "@app/*": [ "app/*" ] + "@app/*": [ "app/*" ], + "video.js": [ "../node_modules/video.js/dist/alt/video.core.js" ], + "fs": [ "./shims/noop" ], + "http": [ "./shims/http" ], + "https": [ "./shims/https" ], + "path": [ "./shims/path" ], + "stream": [ "./shims/noop" ], + "crypto": [ "./shims/noop" ] } - } + }, + "exclude": [ + "../node_modules", + "node_modules", + "dist", + "../server" + ] }