]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/tsconfig.json
Remove inferred type
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
index 6ac5e6a9e46e261a05e32c4c36607e4bcb1bb99b..beca79e01f7d89c967f4c072b0d86230a45cd858 100644 (file)
@@ -7,6 +7,10 @@
     "moduleResolution": "node",
     "emitDecoratorMetadata": true,
     "experimentalDecorators": true,
+    "noImplicitAny": true,
+    "noImplicitThis": true,
+    "suppressImplicitAnyIndexErrors":true,
+    "alwaysStrict": true,
     "target": "es5",
     "typeRoots": [
       "node_modules/@types"
@@ -17,6 +21,9 @@
       "es2015",
       "dom"
     ],
+    "types": [
+      "jasmine"
+    ],
     "baseUrl": "src",
     "paths": {
       "@app/*": [ "app/*" ],
       "crypto": [ "./shims/noop" ]
     }
   },
+  "angularCompilerOptions": {
+    "strictInjectionParameters": true,
+    "fullTemplateTypeCheck": true
+  },
   "exclude": [
     "../node_modules",
     "node_modules",
     "dist",
-    "../server"
+    "../server",
+    "src/**/*.spec.ts"
   ]
 }