-
-
Notifications
You must be signed in to change notification settings - Fork 19
Upgrade esbuild
for const type parameters?
#48
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
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! |
Uh oh!
There was an error while loading. Please reload this page.
Hey @lukeed 👋 hope you're well!
It seems that
esbuild@0.17.14
added support for TS 5.0const
type parametersCurrently,
tsm@2.3.0
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: