Skip to content

Commit

Permalink
disable strict null check temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
Youngjoon Lee committed Sep 16, 2020
1 parent c56c6b7 commit 3aea7ac
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
/* Strict Type-Checking Options */
"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. */
//TODO: to be true, after making all codes type-safe
"strictNullChecks": false, /* 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. */
Expand Down

0 comments on commit 3aea7ac

Please sign in to comment.