In order to load extension-like code in a web worker and import external libraries, I am facing an issue with the typescript compiler not generating valid code for the web worker. My current workaround involves constructing the Worker with type module so that I can utilize es6 modules inside the worker. However, this method requires using Chrome beta version with the flag --enable-experimental-web-platform-features for it to work properly. I am curious if there are any alternative solutions to achieve this without relying on experimental features.