hbuilderx
如何配置才能修复[eslint-vue] Parsing error: Unexpected token :
function test(index: any) {}
上述方法标注类型报错,通过各种配置eslint都不生效,各种找不到模块
hbuilderx
如何配置才能修复[eslint-vue] Parsing error: Unexpected token :
function test(index: any) {}
上述方法标注类型报错,通过各种配置eslint都不生效,各种找不到模块
3 个回复
a***@veehui.com
之前需要加: any,4.14版本下我删了 : any 就不报错了
a***@veehui.com
或者你试一下在 工具->设置 .eslintrc.js中加入
'parser': '@typescript-eslint/parser'
a***@veehui.com
npm install babel-eslint --save-D
'parser': 'babel-eslint'