[Dynamic import proposal](https://github.com/tc39/proposal-dynamic-import) is in early stages but it will require TypeScript to support it in order to be usable in TypeScript based apps. Basic syntax: ```ts import('./my-module.ts').then(({export1, export2}) => { }); ```