Fixed build error in Typescript 2.x and RxJS 5.x v0.2.0-beta
authorSebastien Douheret <sebastien.douheret@iot.bzh>
Sat, 26 Aug 2017 09:36:58 +0000 (11:36 +0200)
committerSebastien Douheret <sebastien.douheret@iot.bzh>
Sat, 26 Aug 2017 09:36:58 +0000 (11:36 +0200)
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
webapp/tsconfig.json

index 4c37259..9bad681 100644 (file)
@@ -8,10 +8,11 @@
     "emitDecoratorMetadata": true,
     "experimentalDecorators": true,
     "removeComments": false,
-    "noImplicitAny": false
+    "noImplicitAny": false,
+    "noStrictGenericChecks": true   // better to switch to RxJS 5.4.2 ; workaround https://stackoverflow.com/questions/44810195/how-do-i-get-around-this-subject-incorrectly-extends-observable-error-in-types
   },
   "exclude": [
     "gulpfile.ts",
     "node_modules"
   ]
-}
\ No newline at end of file
+}