From b1ab5f76f2d0c70168d48518107dd4b6cc77821b Mon Sep 17 00:00:00 2001 From: wolfy1339 Date: Tue, 9 Mar 2021 21:17:20 -0500 Subject: [PATCH] chore(typescript): enable strictNullChecks option --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index a15295b40..dd2c36cda 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,6 +4,7 @@ "module": "esnext", "moduleResolution": "node", "strict": true, + "strictNullChecks": true, "target": "es2018" }, "include": ["src/**/*"]