From 85a8f8e6cb40205a1204cb5575e7f9748e2e6bf1 Mon Sep 17 00:00:00 2001 From: Yuzu Date: Fri, 17 Sep 2021 11:13:35 -0700 Subject: [PATCH] Use strictNullChecks --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 5bd6a83..b5fffd1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -32,7 +32,7 @@ "strict": true, /* Enable all strict type-checking options. */ // "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ - // "strictNullChecks": true, /* Enable strict null checks. */ + "strictNullChecks": true, /* Enable strict null checks. */ // "strictFunctionTypes": true, /* Enable strict checking of function types. */ // "strictBindCallApply": true, /* Enable strict 'bind', 'call', and 'apply' methods on functions. */ // "strictPropertyInitialization": true, /* Enable strict checking of property initialization in classes. */