study-babel-loader
v0.0.0
Published
study ASY
Downloads
3
Maintainers
Readme
babel-plugin-babel-plugin
study ASY
Example
In
// input code
Out
"use strict";
// output code
Installation
$ npm install babel-plugin-babel-plugin
Usage
Via .babelrc
(Recommended)
.babelrc
{
"plugins": ["babel-plugin"]
}
Via CLI
$ babel --plugins babel-plugin script.js
Via Node API
require("babel-core").transform("code", {
plugins: ["babel-plugin"]
});