Skip to main content

@babel/plugin-transform-dynamic-import

信息

本插件包含在 @babel/preset-envES2020 中。

¥This plugin is included in @babel/preset-env, in ES2020.

import() 表达式转换为非 ESM 模块格式。

¥Transforms import() expressions to non-ESM module formats.

何时(不)使用此插件

¥When (not) to use this plugin

如果你使用的是 Webpack、Rollup 或 Parcel 等打包程序,则不应使用此插件并让你的打包程序处理 import() 表达式。

¥If you are using a bundler, such as Webpack, Rollup or Parcel, you should not use this plugin and let your bundler handle import() expressions.

如果出现以下情况,你应该使用此插件:

¥You should use this plugin if:

此插件必须与上述模块转换插件之一一起使用。

¥This plugin must be used with one of the module transform plugins mentioned above.

示例

¥Example

input.js
import("jquery").then($ => {});

将转变为

¥will be transformed to

output.js
Promise.resolve()
.then(() => _interopRequireWildcard(require("jquery")))
.then(($) => {});

安装

¥Installation

npm install --save-dev @babel/plugin-transform-dynamic-import

用法

¥Usage

¥With a configuration file (Recommended)

babel.config.json
{
"plugins": [
"@babel/plugin-transform-dynamic-import",
"@babel/plugin-transform-modules-commonjs"
]
}

通过 CLI

¥Via CLI

Shell
babel --plugins=@babel/plugin-transform-dynamic-import,@babel/plugin-transform-modules-amd script.js

通过 Node API

¥Via Node API

JavaScript
require("@babel/core").transformSync("code", {
plugins: [
"@babel/plugin-transform-dynamic-import",
"@babel/plugin-transform-modules-systemjs"
],
});

参考

¥References