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
It throws an error on Safari 12.1, in both development and production. I also have a React lib that when transpiled used the ||= operator, which turns out was only supported in Safari 14.
It's probably the nullish coalescing you're using that isn't being polyfilled by tsup, since it's only supported by Safari 13.4 onwards.
The text was updated successfully, but these errors were encountered:
It throws an error on Safari 12.1, in both development and production. I also have a React lib that when transpiled used the
||=
operator, which turns out was only supported in Safari 14.It's probably the nullish coalescing you're using that isn't being polyfilled by tsup, since it's only supported by Safari 13.4 onwards.
The text was updated successfully, but these errors were encountered: