outaozhen 9778140fc2 测试提交 пре 5 година
..
lib 9778140fc2 测试提交 пре 5 година
.npmignore 9778140fc2 测试提交 пре 5 година
README.md 9778140fc2 测试提交 пре 5 година
package.json 9778140fc2 测试提交 пре 5 година

README.md

babel-plugin-syntax-jsx

Installation

$ npm install babel-plugin-syntax-jsx

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["syntax-jsx"]
}

Via CLI

$ babel --plugins syntax-jsx script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["syntax-jsx"]
});