babel-plugin-dynamic-import-node
Last updated
Was this helpful?
Last updated
Was this helpful?
Babel plugin to transpile import()
to a deferred require()
, for node. Matches the .
NOTE: Babylon >= v6.12.0 is required to correctly parse dynamic imports.
.babelrc
(Recommended).babelrc
noInterop
- A boolean value, that if true will not interop the require calls. Useful to avoid using require('module').default
on commonjs modules.