npm i vue-cli -g
vue init shawwn/parcel-simple name
cd name
npm i
npm i -D babel-preset-es2015-without-strict babel-preset-es2017 babel-preset-es2016 babel-preset-stage-3

.babelrc文件配置

"presets": [ "es2017", "es2016", "babel-preset-es2015-without-strict", "stage-3" ], 体验过后,不愧是新兴打包工具,打包速度果然比webpack快很多,但是实际项目迁移之后会发现很多ts与babel之间的冲突,所以暂时还是不要动了。