@babel/plugin-syntax-import-attributes
注意
仅语法
此插件仅使 Babel 能够解析此语法。Babel 不支持转换此语法
此插件使 Babel 能够解析导入属性
JavaScript
import foo from "./foo.json" with { type: "json" };
安装
- npm
- Yarn
- pnpm
npm install --save-dev @babel/plugin-syntax-import-attributes
yarn add --dev @babel/plugin-syntax-import-attributes
pnpm add --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 中删除。