mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-08-06 17:48:43 +08:00
babel-plugin-syntax-dynamic-import
Allow parsing of import()
.
Installation
$ npm install babel-plugin-syntax-dynamic-import
Usage
Via .babelrc
(Recommended)
.babelrc
{
"plugins": ["syntax-dynamic-import"]
}
Via CLI
$ babel --plugins syntax-dynamic-import script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["syntax-dynamic-import"]
});