-
Notifications
You must be signed in to change notification settings - Fork 3
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
Migrate to Typescript #8
Labels
Comments
some points we need to have (feel free to edit to add more todo points): Basics
// if you have an any type you need to write it out
"noImplicitAny": true,
// makes us handle null and undefined cases, without it ts will only be half as useful
"strictNullChecks": true,
"strict": true for more compiler options see https://www.typescriptlang.org/tsconfig#compilerOptions Testing
|
Related: infernojs/inferno#1619 |
Part of it has been done. Commits to master. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This will help a lot in reducing bugs. I will do it myself as I have to learn.
The text was updated successfully, but these errors were encountered: