Skip to content

Latest commit

 

History

History

babel-plugin-syntax-dynamic-import

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

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"]
});