Replies: 1 comment 3 replies
-
We are working on making reSolve fully typed. We still have some packages to convert to typescirpt first, so typing demos will take some time. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey guys, really appreciate you putting the time into making some typescript examples, sorry it has taken me so long to exploring them.
Although there are now some types it seems like there is an awful lot of "any" spread around the codebase.
For example none of the payloads are typed so everything is "any". Same goes for the aggregate state.
If we set
"noImplicitAny": true
and"strictNullChecks": true
(which should be the minimum for any modern TS project, ideally you should be using"strict": true
) in the tsconfig.json we get all kind of errors.Currently as it stands there is little benefit to the TS examples over the JS ones.
Beta Was this translation helpful? Give feedback.
All reactions