You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

36 lines
452 B
Markdown

5 years ago
# babel-plugin-syntax-dynamic-import
Allow parsing of `import()`.
## Installation
```sh
$ npm install babel-plugin-syntax-dynamic-import
```
## Usage
### Via `.babelrc` (Recommended)
**.babelrc**
```json
{
"plugins": ["syntax-dynamic-import"]
}
```
### Via CLI
```sh
$ babel --plugins syntax-dynamic-import script.js
```
### Via Node API
```javascript
require("babel-core").transform("code", {
plugins: ["syntax-dynamic-import"]
});
```