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
{{ message }}
This repository was archived by the owner on Feb 26, 2025. It is now read-only.
The readme information on import: referrer handling is really excellent, but I just wanted to clarify one case for my own peace of mind which doesn't seem to be mentioned.
If I use an import: URL in a module specifier or dynamic import, will it still be resolved relative to the parent:
importxfrom'import:x';importyfrom'x';constz=awaitimport('import:x');// Are x,y, z all equal?
In addition, does that mean a dynamic import in a script would be script-relative: