I'm in the process of migrating from SystemJS to Webpack2 and today with SystemJS we have some modules that imported at runtime from the server and the names of the modules are only known at runtime.
We have SystemJS mapping that indicates any import "extension/" maps to "api/extension/" on the server.
I'm attempting to get this to work with Webpack2 but appears that any "import()" will only get resolved to relative to the bundled files.
Is there a way of accomplishing this with webpack2?