aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSebastien Douheret <sebastien.douheret@iot.bzh>2017-08-26 11:36:58 +0200
committerSebastien Douheret <sebastien.douheret@iot.bzh>2017-08-26 11:36:58 +0200
commit29b13449d2e8a5dad2aefda6e9a2b5661fecfc2a (patch)
treedafe41604d24cc38367b93fdf58e49d9368c0281
parent5e120c466686880c5bf6b94043dd01edc261fef9 (diff)
Fixed build error in Typescript 2.x and RxJS 5.xv0.2.0-beta
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
-rw-r--r--webapp/tsconfig.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/webapp/tsconfig.json b/webapp/tsconfig.json
index 4c37259..9bad681 100644
--- a/webapp/tsconfig.json
+++ b/webapp/tsconfig.json
@@ -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
+}