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
As discussed in #2119, enabling strict mode in the Typescript compiler would reduce the chance of certain types of bugs occurring.
Running tsc --strict reports 321 errors. Trying to fix these errors in one PR would be a bit daunting. Instead, there might be a way to gradually enable strict checking on a per file/directory basis. There doesn't seem to be a Typescript-official way to do this, but this package looks like it could be helpful.
The text was updated successfully, but these errors were encountered:
Another option to bring the codebase up to strict compliance would be to enable the compiler rules that comprise strict mode one at at time. Those are:
As discussed in #2119, enabling strict mode in the Typescript compiler would reduce the chance of certain types of bugs occurring.
Running
tsc --strict
reports 321 errors. Trying to fix these errors in one PR would be a bit daunting. Instead, there might be a way to gradually enable strict checking on a per file/directory basis. There doesn't seem to be a Typescript-official way to do this, but this package looks like it could be helpful.The text was updated successfully, but these errors were encountered: