This PR does some more refactoring of the module handling code and adds support for:
- default imports/exports
- export specifiers with renaming (e.g.
var x = 1; export { x as y }) - import namespaces (
import * as T)
This PR does some more refactoring of the module handling code and adds support for:
var x = 1; export { x as y })import * as T)