https://github.com/jaystack/babel-plugin-functionly-annotations
https://github.com/jaystack/babel-plugin-functionly-annotations
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jaystack/babel-plugin-functionly-annotations
- Owner: jaystack
- Created: 2017-05-23T11:12:22.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-02-01T10:25:20.000Z (over 7 years ago)
- Last Synced: 2025-02-16T20:46:23.483Z (3 months ago)
- Language: JavaScript
- Size: 15.6 KB
- Stars: 0
- Watchers: 8
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# babel-plugin-functionly-annotations
A babel transformer plugin for functionly decorators.
Use [babel-plugin-transform-decorators-legacy](https://github.com/loganfsmyth/babel-plugin-transform-decorators-legacy) to support decorators.
## Install
```sh
npm install --save-dev babel-plugin-functionly-annotations
``````sh
npm install --save-dev babel-plugin-transform-decorators-legacy babel-preset-es2015-node5
```.babelrc
```json
{
"plugins": [
"functionly-annotations",
"transform-decorators-legacy"
],
"presets": [
"es2015-node5"
]
}
```