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
The this reference there causes Parcel to mark the module as CommonJS. This in turn causes the packager to add a setter to the $parcel$export call, which may include invalid syntax (e.g. function (v) { return (parcelRequire("3RBLs")) = v; }).
TSC builds helpers that look like this:
The
this
reference there causes Parcel to mark the module as CommonJS. This in turn causes the packager to add a setter to the$parcel$export
call, which may include invalid syntax (e.g.function (v) { return (parcelRequire("3RBLs")) = v; }
).parcel/packages/packagers/js/src/ScopeHoistingPackager.js
Lines 1030 to 1032 in 3678a9f
These are potentially two separate issues:
this
reference is only a read, not a write to avoid marking as CJS.parcelRequire
and not add a setter in that case?The text was updated successfully, but these errors were encountered: