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
// /program.js
import { show, heart } from './other.js';
show(heart);
// /other.js
export { show, heart } from 'rune';
leads to the error: Line 5: ReferenceError: Cannot access 'show' before initialization. If this type of export is unsupported, then this error message is not indicative of that fact.
In folder mode:
leads to the error:
Line 5: ReferenceError: Cannot access 'show' before initialization
. If this type of export is unsupported, then this error message is not indicative of that fact.Code here
The text was updated successfully, but these errors were encountered: