错误情况:=> 会爆红提示:ESLint: Parsing error: Unexpected token. Did you mean
{'>'}
or>
?
typescript
function().then((res) => {
console.log(res.data);
}
解决方法:修改.eslintrc或者.eslintrc.js的配置
typescript
module.exports = {
// 其他配置...
"parserOptions": {
// 允许使用较新的 ECMAScript 特性
"ecmaVersion": 2022,
// 或者:
"ecmaFeatures": {
"jsx": false // 关闭JSX语法支持
}
},
};