0.0.0 • Published 3 years ago

study-babel-loader v0.0.0

Weekly downloads
-
License
-
Repository
github
Last release
3 years ago

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"]
});