@babel/plugin-external-helpers
- npm
- Yarn
- pnpm
npm install --save-dev @babel/plugin-external-helpers
yarn add --dev @babel/plugin-external-helpers
pnpm add --save-dev @babel/plugin-external-helpers
用法
使用配置文件(推荐)
babel.config.json
{
"plugins": ["@babel/plugin-external-helpers"]
}
通过 CLI
Shell
babel --plugins @babel/plugin-external-helpers script.js
通过 Node API
JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-external-helpers"]
});