vue2.0+TS项目运行和打包突然报如下问题,
感觉像是babel不支持TS可选链的写法,百度了半天没有找到解决方案。
最后查了一下babel的插件库,在项目配置文件:babel.config。js中加上对象的插件库就行:"@babel/plugin-proposal-optional-chaining"
- presets: ['@vue/cli-plugin-babel/preset', '@babel/preset-env'],
- plugins: [
- '@babel/plugin-proposal-numeric-separator',
- '@babel/proposal-class-properties',
- '@babel/proposal-object-rest-spread',
- '@babel/plugin-proposal-optional-chaining',
- ],