工作准备:
- 引入插件:
npm install babel-plugin-transform-decorators-legacy --save-dev
- 需要在项目的
.babelrc
中加入:
{
"plugins": ["transform-decorators-legacy"]
}
- 使用:
babel --optional es7.decorators index.js > index.es5.js
实际使用中,可以不使用--optional
babel index.js > index.es5.js
网友评论