]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - client/tsconfig.json
Fallback HLS to webtorrent
[github/Chocobozzz/PeerTube.git] / client / tsconfig.json
index 60c343867496496f0b30648622839a5b941f7c11..3f9986f8a6674c306862d48bd44c119b7908c00c 100644 (file)
@@ -5,8 +5,13 @@
     "sourceMap": true,
     "declaration": false,
     "moduleResolution": "node",
+    "module": "esnext",
     "emitDecoratorMetadata": true,
     "experimentalDecorators": true,
+    "noImplicitAny": true,
+    "noImplicitThis": true,
+    "suppressImplicitAnyIndexErrors":true,
+    "alwaysStrict": true,
     "target": "es5",
     "typeRoots": [
       "node_modules/@types"
@@ -17,6 +22,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"
+  ]
 }