@babel/plugin-transform-react-jsx-self
信息
此插件包含在 @babel/preset-react
中
示例
输入
<sometag />
输出
<sometag __self={this} />
安装
- npm
- Yarn
- pnpm
npm install --save-dev @babel/plugin-transform-react-jsx-self
yarn add --dev @babel/plugin-transform-react-jsx-self
pnpm add --save-dev @babel/plugin-transform-react-jsx-self
用法
使用配置文件(推荐)
babel.config.json
{
"plugins": ["@babel/plugin-transform-react-jsx-self"]
}
通过 CLI
Shell
babel --plugins @babel/plugin-transform-react-jsx-self script.js
通过 Node API
JavaScript
require("@babel/core").transformSync("code", {
plugins: ["@babel/plugin-transform-react-jsx-self"],
});