]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/tsconfig.json
Bumped to version v1.0.1
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
index 60c343867496496f0b30648622839a5b941f7c11..e041769dd9c8a170f74ba3935ef37e8118e27d60 100644 (file)
@@ -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/*" ],
       "stream": [ "./shims/noop" ],
       "crypto": [ "./shims/noop" ]
     }
-  }
+  },
+  "angularCompilerOptions": {
+    "strictInjectionParameters": true,
+    "fullTemplateTypeCheck": true
+  },
+  "exclude": [
+    "../node_modules",
+    "node_modules",
+    "dist",
+    "../server",
+    "src/**/*.spec.ts"
+  ]
 }