summary refs log tree commit diff
diff options
context:
space:
mode:
authorDiego Magdaleno <diegomagdaleno@protonmail.com>2021-05-22 22:23:46 -0500
committerDiego Magdaleno <diegomagdaleno@protonmail.com>2021-05-22 22:23:46 -0500
commitc93a47d9a0b573e8c100ba9f811dbcdc6c7ad292 (patch)
tree383009158a64f6a83a97e378b9ff99a7855afa65
parent:arrow_up: update dependency (diff)
downloadserver-c93a47d9a0b573e8c100ba9f811dbcdc6c7ad292.tar.xz
Meta: Enable strictNullChecks
-rw-r--r--tsconfig.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/tsconfig.json b/tsconfig.json

index 279cbbf1..fd2c21ea 100644 --- a/tsconfig.json +++ b/tsconfig.json
@@ -29,7 +29,7 @@ /* Strict Type-Checking Options */ "strict": false /* 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": false /* Enable strict checking of property initialization in classes. */,