From 4ca30295d7d9f3dd7ba2e105952ff627f6b702a4 Mon Sep 17 00:00:00 2001 From: Noah Loomans Date: Thu, 21 Dec 2017 13:10:05 +0100 Subject: Add strict typing Except for functions because of https://github.com/reactjs/redux/issues/2709 --- tsconfig.json | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'tsconfig.json') 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/**/*" -- cgit v1.1