ES proposal: import()
at www.2ality.com▼18 up and 0 down, posted by 
18 up and 0 down, posted by 
Only if you want a bundle that comprises every module you need. But then again, import() will be used to load modules dynamically and *asynchronously*, so their place is actually *not* in such bundles, but in separate files that are lazy-loaded as needed.
I don't agree that those modules should never be part of the bundle. For example, you could have language files and load them with a function like "loadLang = lang => import(`./languages/${lang}`)". It is totally debatable if those language files should be part of the bundle or not and a decision the developer has to make.