Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Enable strictNullChecks, noImplicitAny checks in TS config #139

Open
bbbneo333 opened this issue Jul 24, 2024 · 0 comments · May be fixed by #159
Open

fix: Enable strictNullChecks, noImplicitAny checks in TS config #139

bbbneo333 opened this issue Jul 24, 2024 · 0 comments · May be fixed by #159
Assignees
Labels
enhancement New feature or request

Comments

@bbbneo333
Copy link
Contributor

Currently we have following in our TS config:

"strictNullChecks": false,
"noImplicitAny": false

This can lead to following issues:

  • More runtime errors due to unchecked null or undefined values.
  • Less type safety and more bugs, as the compiler can't catch implicit any types or null issues.
  • Harder code maintenance and debugging due to less clear type expectations.

We should enable them to have strict type policy.

@bbbneo333 bbbneo333 added bug Something isn't working enhancement New feature or request and removed bug Something isn't working labels Jul 24, 2024
@abhishek310001 abhishek310001 linked a pull request Aug 21, 2024 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants