From 3863ab82a0fff36735db70b2f87ca92661d0e272 Mon Sep 17 00:00:00 2001 From: steabert Date: Sat, 22 Jun 2019 14:06:52 +0200 Subject: [PATCH] chore(ts): add strict null checks --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index f33d37d3e..64b0e3969 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,7 +2,7 @@ "compilerOptions": { /* Include Typescript declaration files */ "declaration": true, - + /* Basic Options */ "target": "es2015", "module": "es2015", @@ -13,6 +13,7 @@ /* Strict Type-Checking Options */ "strict": true, + "strictNullChecks": true, /* Module Resolution Options */ "moduleResolution": "node",