* Make @babel/plugin-class-features a normal helper package This effectively disallows using it directly. * Rename helper * Style * Don't add prefix to plugin name * Move private methods plugin
20 lines
407 B
Markdown
20 lines
407 B
Markdown
# @babel/plugin-class-features
|
|
|
|
> Compile class public and private fields, private methods and decorators to ES6
|
|
|
|
See our website [@babel/plugin-class-features](https://babeljs.io/docs/en/next/babel-plugin-class-features.html) for more information.
|
|
|
|
## Install
|
|
|
|
Using npm:
|
|
|
|
```sh
|
|
npm install --save-dev @babel/plugin-class-features
|
|
```
|
|
|
|
or using yarn:
|
|
|
|
```sh
|
|
yarn add @babel/plugin-class-features --dev
|
|
```
|