babel-plugin-transform-dynamic-import-to-static
a babel plugin to convert dynamic import to static import
Purpose
This plugin hoists dynamic imports to static imports, and replaces dynamic import statements with immediately resolved promises, also won't touch static import.
import'./B'
to
Promise
See it in action in astexplorer
Usage
add as plugin to your babel configuration
//... "plugins": // ... "babel-plugin-transform-dynamic-import-to-static"
Use case
This plugin was made to use with react-hot-loader and react-loadable to ensure hot-reloading works out of the box with a code-split architecture. It is meant to be used only during development.