This craco plugin will set up babel-plugin-parameter-decorator for your project.
Support:
- create-react-app: 3.x, 4.x
- craco: 5.x, 6.x
Yarn
$ yarn add -E @redtea/craco-parameter-decorator
NPM
$ npm install -E @redtea/craco-parameter-decorator
Add the plugin to your craco config. For example:
const ParameterDecoratorPlugin = require("@redtea/craco-parameter-decorator");
module.exports = {
plugins: [{ plugin: ParameterDecoratorPlugin }],
};