You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently have "strictNullChecks": false in our tsconfig.json, which lets us write dangerous code that never checks for types/properties that could be nullable/undefined. This issue alone has lead to multiple hard crashes/TypeErrors in production code this year alone. Setting this value to true causes 954 errors in the main branch right now, but cleaning these up is mostly a menial chore rather than something that requires acute attention to detail.
Prefer to do this at a point in time when there is less activity in the repo than usual.
Description
We currently have
"strictNullChecks": false
in ourtsconfig.json
, which lets us write dangerous code that never checks for types/properties that could be nullable/undefined. This issue alone has lead to multiple hard crashes/TypeError
s in production code this year alone. Setting this value to true causes 954 errors in the main branch right now, but cleaning these up is mostly a menial chore rather than something that requires acute attention to detail.Prefer to do this at a point in time when there is less activity in the repo than usual.
Related issues
The text was updated successfully, but these errors were encountered: