I know that we can import all named modules with alias as below,
import * as name from \"module-name\";
Ref: https://developer.mozilla.org
For Now, there is no clean way to do this. But you can overcome the problem by :
1) defining an alias
import * as foo from "foo"
2) writing all modules
import {a,b,c,d,...} from "foo"