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
When a module is loaded I want to set something on import.meta in the module for the module to use, which by default is just an empty object.
The module resolver is set for NodeRuntime, but the import() function does not seem to work. When called, it still goes through the nodejs module callback and throws an error like the following
When a module is loaded I want to set something on
import.meta
in the module for the module to use, which by default is just an empty object.The module resolver is set for NodeRuntime, but the
import()
function does not seem to work. When called, it still goes through the nodejs module callback and throws an error like the followingWhen using import with, such as
import fooData from './foo.json' with { type: 'json' };
, it will also be called back by nodejs and imported correctlyThe text was updated successfully, but these errors were encountered: