import.*("path/to/module")
in addition to the existing expression import("path/to/module")
, which would be equivalent to:
import * as _i_ae9fa from "path/to/module";
// where the expression appeared...
_i_ae9fa
It's useful for solving name conflicts and contributing static media.