yanchengPowerSupply/node_modules/babel-plugin-syntax-dynamic...
mazhehui 33e57c6f11 分布式光伏大屏页面 2023-07-18 08:47:30 +08:00
..
lib 分布式光伏大屏页面 2023-07-18 08:47:30 +08:00
.npmignore 分布式光伏大屏页面 2023-07-18 08:47:30 +08:00
README.md 分布式光伏大屏页面 2023-07-18 08:47:30 +08:00
package.json 分布式光伏大屏页面 2023-07-18 08:47:30 +08:00

README.md

babel-plugin-syntax-dynamic-import

Allow parsing of import().

Installation

$ npm install babel-plugin-syntax-dynamic-import

Usage

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