X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;f=client%2Ftsconfig.json;h=e041769dd9c8a170f74ba3935ef37e8118e27d60;hb=ebc1984cc6200377d9869e570bc0ad1f95fa74bb;hp=60c343867496496f0b30648622839a5b941f7c11;hpb=3ea9a1c311c3e3c55fb95560d4dd99a77c52df4a;p=github%2FChocobozzz%2FPeerTube.git diff --git a/client/tsconfig.json b/client/tsconfig.json index 60c343867..e041769dd 100644 --- a/client/tsconfig.json +++ b/client/tsconfig.json @@ -7,6 +7,7 @@ "moduleResolution": "node", "emitDecoratorMetadata": true, "experimentalDecorators": true, + "noImplicitAny": false, "target": "es5", "typeRoots": [ "node_modules/@types" @@ -17,6 +18,9 @@ "es2015", "dom" ], + "types": [ + "jasmine" + ], "baseUrl": "src", "paths": { "@app/*": [ "app/*" ], @@ -28,5 +32,16 @@ "stream": [ "./shims/noop" ], "crypto": [ "./shims/noop" ] } - } + }, + "angularCompilerOptions": { + "strictInjectionParameters": true, + "fullTemplateTypeCheck": true + }, + "exclude": [ + "../node_modules", + "node_modules", + "dist", + "../server", + "src/**/*.spec.ts" + ] }