跳至主要内容

@babel/plugin-syntax-import-attributes

注意

仅语法

此插件仅使 Babel 能够解析此语法。Babel 不支持转换此语法

此插件使 Babel 能够解析导入属性

JavaScript
import foo from "./foo.json" with { type: "json" };

安装

npm install --save-dev @babel/plugin-syntax-import-attributes

用法

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

通过 CLI

Shell
babel --plugins @babel/plugin-syntax-import-attributes script.js

通过 Node API

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

选项

deprecatedAssertSyntax

boolean,默认为 false

如果启用,则支持使用 已弃用assert 关键字解析导入属性

JavaScript
import foo from "./foo.json" assert { type: "json" };

此语法仅在基于 V8 的引擎中受支持,并且正在调查将其从 Web 中删除。