Skip to content

Latest commit

 

History

History
35 lines (24 loc) · 432 Bytes

File metadata and controls

35 lines (24 loc) · 432 Bytes

babel-plugin-syntax-decorators

Allow parsing of decorators.

Installation

$ npm install babel-plugin-syntax-decorators

Usage

Via .babelrc (Recommended)

.babelrc

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

Via CLI

$ babel --plugins syntax-decorators script.js

Via Node API

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