From f5997862f0899ecc3827eba3529122a9db2ce00c Mon Sep 17 00:00:00 2001 From: Jacob Weisz Date: Wed, 12 Oct 2022 23:29:12 -0500 Subject: [PATCH] Typecheck: Disable strictNullChecks --- shell/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/tsconfig.json b/shell/tsconfig.json index cad90b6339..95862c664c 100644 --- a/shell/tsconfig.json +++ b/shell/tsconfig.json @@ -12,7 +12,7 @@ /* Strict Type-Checking Options */ "strict": true, "noImplicitAny": true, - "strictNullChecks": true, + "strictNullChecks": false, /* Additional Checks */ "noUnusedLocals": true,