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
{{ message }}
This repository has been archived by the owner on Aug 17, 2022. It is now read-only.
There are a few rules which are sadly no turned on by default, and it would be good to share a recommended .tsconfig for those interested.
For example:
strict: true
esModuleInterop: true
noUncheckedIndexedAccess: true
This flag can be handy for catching out-of-bounds errors, but it might be noisy for a lot of code, so it is not automatically enabled by the strict flag; however, if this feature is interesting to you, you should feel free to try it and determine whether it makes sense for your team’s codebase!
The text was updated successfully, but these errors were encountered:
There are a few rules which are sadly no turned on by default, and it would be good to share a recommended
.tsconfig
for those interested.For example:
strict: true
esModuleInterop: true
noUncheckedIndexedAccess: true
The text was updated successfully, but these errors were encountered: