-
-
Notifications
You must be signed in to change notification settings - Fork 839
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
Assorted Typing Fixes #3348
Assorted Typing Fixes #3348
Conversation
The tsconfig changes from that command are ignored, since we don't yet support "replacable sections" that would let us add custom config.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Amazing to see this!
Wouldn't have been fun across multiple repositories >.>
Looks like the diff shows dist files despite .gitattributes
files instructing against, it seems like only a root level .gitattributes
is taken into consideration so we'll probably want to add one.
Other than that, all looks good to me! Thanks for the well-split commits.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most of these are just using import type
instead of import
to make certain that we don't accidentally use the imports for anything except typing.
Another thing to note is that we should really be marking view method return types as Mithril.Children
rather than the automatic JSX.Element
since that doesn't allow extends/overrides to return things like null
, strings, numbers or arrays as fragments.
Thank you for your hard work on this 🤗🥰
c84060d
to
3ddec0a
Compare
Moving one step closer to having all the hundreds of CI jobs on this monorepo be green.