X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=client%2Ftsconfig.json;h=752f5b35f66174e2bc2dc43ac11910eeee54365f;hb=7a09c3007a0b0ce317ca0c76948ca9c4712933dc;hp=c4f2d6a6a5afd2fb03453f48bde6457ddcdc9cf9;hpb=f5fcd9f72514d6c4044a9c904d0ce610033bcba5;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index c4f2d6a6a..752f5b35f 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -13,6 +13,7 @@ "noImplicitThis": true, "suppressImplicitAnyIndexErrors":true, "alwaysStrict": true, + "importHelpers": true, "strictBindCallApply": true, "target": "es2015", "typeRoots": [ @@ -24,19 +25,20 @@ ], "baseUrl": "./", "paths": { + "video.js": [ "node_modules/video.js/core" ], "@app/*": [ "src/app/*" ], "@shared/*": [ "../shared/*" ], - "video.js": [ "node_modules/video.js/dist/alt/video.core.novtt" ], - "fs": [ "src/shims/noop" ], - "http": [ "src/shims/http" ], - "https": [ "src/shims/https" ], - "path": [ "src/shims/path" ], - "stream": [ "src/shims/noop" ], - "crypto": [ "src/shims/noop" ] + "fs": [ "src/shims/noop.ts" ], + "http": [ "src/shims/http.ts" ], + "https": [ "src/shims/https.ts" ], + "path": [ "src/shims/path.ts" ], + "stream": [ "src/shims/noop.ts" ], + "crypto": [ "src/shims/noop.ts" ] } }, "angularCompilerOptions": { "strictInjectionParameters": true, - "fullTemplateTypeCheck": true + "fullTemplateTypeCheck": true, + "strictTemplates": true } }