aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorNoah Loomans <noahloomans@gmail.com>2017-12-21 13:10:05 +0100
committerNoah Loomans <noahloomans@gmail.com>2017-12-21 13:10:05 +0100
commit4ca30295d7d9f3dd7ba2e105952ff627f6b702a4 (patch)
tree48285ecb1957171ebb9b0106aaf2d1a184972d0e /tsconfig.json
parentf0c8cf0e79f003514fd65a70def5820205955a77 (diff)
Add strict typing
Except for functions because of https://github.com/reactjs/redux/issues/2709
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json4
1 files changed, 3 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 5c9eafc..6ffd08a 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -5,7 +5,9 @@
"noImplicitAny": true,
"module": "commonjs",
"target": "es5",
- "jsx": "react"
+ "jsx": "react",
+ "strict": true,
+ "strictFunctionTypes": false,
},
"include": [
"./src/client/react/**/*"