-
-
Notifications
You must be signed in to change notification settings - Fork 19
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
Upgrade esbuild
for const type parameters?
#48
Comments
WorkaroundTo upgrade
{
"resolutions": {
"esbuild": "0.18.6"
}
} |
Hi there, thanks :) I wanted to cut a new major release today to include this (because of esbuild breaking changes), but I think that it should include support for Node 20.x (#46) which will probably also include some breaking changes. (Thanks Node team) Please stick with the workaround for now :/ If there's no likely progress on Node-side with the |
Hi! Any news on this side? Thanks! |
Hey @lukeed π hope you're well!
It seems that
[email protected]
added support for TS 5.0const
type parametersCurrently,
[email protected]
depends onesbuild@^0.15.16
, and runs into errors likeExpected identifier but found "const"
:Proposed Solution
What do you think about upgrading to
esbuild@^0.18.6
?Seems like forcing the upgrade to the transitive
esbuild
dependency via Yarn Resolutions works in our project and enables theconst
type parameters πThe text was updated successfully, but these errors were encountered: