well, in order to transpile import() you need a way to a) convert modules to scripts and b) dynamically load those scripts.
Sounds like Async Module Definition.
I did a half-hearted poke through the production code, and it looked more like cjs to me. Just curious what kind of 'modules' are actually serving down to clients.
re: We reduced our vendor.js from 210kb to 16kb in about five minutes of work and ten lines of code VIEW POST
TOP OF THREAD FULL DISCUSSIONwell, in order to transpile
import()
you need a way to a) convert modules to scripts and b) dynamically load those scripts.Sounds like Async Module Definition.
I did a half-hearted poke through the production code, and it looked more like cjs to me. Just curious what kind of 'modules' are actually serving down to clients.