You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the report. This was tripping up esbuild's TypeScript parser because the >= token was split into a > token and a = token because the > token is needed to close the type parameter list, but the = token was not being combined with the following > token to form a => token. To fix this, esbuild needs to expand the = token into the following characters if possible, which can result in a =>, ==, or === token. The fix for this will go out with the next release.
Source code:
When using esbuild:
Problem seems to be gone when a space is added between
>
and=>
New source code:
Result:
Thanks!
The text was updated successfully, but these errors were encountered: