跳至主要内容

@babel/plugin-proposal-import-attributes-to-assertions

注意

此插件生成的代码与当前的 ECMAScript 规范或任何当前提议的添加不兼容。仅当您使用原生 ES 模块并且需要与不支持导入属性语法(import pkg from "./package.json" with { type: "json" })但支持旧导入断言语法(import pkg from "./package.json" assert { type: "json" })的工具(例如 Chrome 91+ 和 Node.js 17.2+)兼容时才使用它。

安装

npm install --save-dev @babel/plugin-proposal-import-attributes-to-assertions

用法

babel.config.json
{
"plugins": ["@babel/plugin-proposal-import-attributes-to-assertions"]
}

通过 CLI

Shell
babel --plugins @babel/plugin-proposal-import-attributes-to-assertions script.js

通过 Node API

JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-proposal-import-attributes-to-assertions"],
});