baichun fb412dddfc 堡垒之夜-工具页 | 6 年 前 | |
---|---|---|
.. | ||
lib | 6 年 前 | |
.npmignore | 6 年 前 | |
README.md | 6 年 前 | |
package.json | 6 年 前 |
Adds source file and line number to JSX elements.
In
<sometag />
Out
<sometag __source={ { fileName: 'this/file.js', lineNumber: 10 } } />
npm install --save-dev babel-plugin-transform-react-jsx-source
.babelrc
(Recommended).babelrc
{
"plugins": ["transform-react-jsx-source"]
}
babel --plugins transform-react-jsx-source script.js
require("babel-core").transform("code", {
plugins: ["transform-react-jsx-source"]
});