Files
xiuhu-backend-store/node_modules/babel-plugin-syntax-decorators
wangxiaowei 5d7b75a14e first commit
2025-12-09 13:35:21 +08:00
..
2025-12-09 13:35:21 +08:00
2025-12-09 13:35:21 +08:00
2025-12-09 13:35:21 +08:00
2025-12-09 13:35:21 +08:00

babel-plugin-syntax-decorators

Allow parsing of decorators.

Installation

$ npm install babel-plugin-syntax-decorators

Usage

.babelrc

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

Via CLI

$ babel --plugins syntax-decorators script.js

Via Node API

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