Get module reference, a url to the find bundled module, so you can use it in iframe or worker.
importsomeModuleURLfrom'REF:./path/to/someModule';// use it in workerconstworker=newWorker(someModuleURL);// inject is into iframeconstiframeDoc=document.getElementById('iframe').contentDocument;constscript=iframeDoc.createElement('script');script.src=someModuleURL;iframeDoc.body.append(script);