Hi guys, I just switched to using the new dynamic `import` in my webpack app but I was surprised that all the code was bundled together. The problem was that I was using `module : "commonjs"`, instead of `module: "esnext"`" in my tsconfig.json. I finally found my solution [here]( https://github.com/Microsoft/TypeScript/issues/14495) (and I missed it in the the [blogpost](https://blogs.msdn.microsoft.com/typescript/2017/06/27/announcing-typescript-2-4/)) But is not yet document documented in [the handbook](https://www.typescriptlang.org/docs/handbook/compiler-options.html) neither in the [json schema](http://json.schemastore.org/tsconfig) for the VS intellisense. Keep the great work!