koa-swagger-decorator
koa-swagger-decorator copied to clipboard
How to set plugins correctly in babel 7.x
The plugins setting is not work in .babelrc file. My babel version is 7.x and yours is 6.x. How to set the plugins in babel 7.x?
There are my settings for the babel 7x:
{
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
]
],
"plugins": [
["@babel/plugin-proposal-decorators", { "legacy": true }]
]
}