From 056d64da8b563002ca0fa2c3d7836fed15f8204a Mon Sep 17 00:00:00 2001 From: LKay Date: Sat, 11 Mar 2017 14:41:56 +0900 Subject: [PATCH] Enable strict null checks, add tslint.json --- redux-auth-wrapper/tsconfig.json | 2 +- redux-auth-wrapper/tslint.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 redux-auth-wrapper/tslint.json diff --git a/redux-auth-wrapper/tsconfig.json b/redux-auth-wrapper/tsconfig.json index 844f327d0e..5aae706c27 100644 --- a/redux-auth-wrapper/tsconfig.json +++ b/redux-auth-wrapper/tsconfig.json @@ -7,7 +7,7 @@ ], "noImplicitAny": true, "noImplicitThis": true, - "strictNullChecks": false, + "strictNullChecks": true, "baseUrl": "../", "typeRoots": ["../"], "paths": { diff --git a/redux-auth-wrapper/tslint.json b/redux-auth-wrapper/tslint.json new file mode 100644 index 0000000000..377cc837d4 --- /dev/null +++ b/redux-auth-wrapper/tslint.json @@ -0,0 +1 @@ +{ "extends": "../tslint.json" }