Parsing error: Cannot read property 'map' of undefined eslint

今天遇到一个奇怪的eslint报错

image.png

map of undefined,起初以为是modelAnalyzer有问题,但我里边压根就没有map方法,google了一圈,发现是@typescript-eslint/parser的bug
于是把"@typescript-eslint/parser"版本从"^2.19.0"
更新到了最新的4.31.0,
1、执行命令:
npm i @typescript-eslint/[email protected] --save-dev
2、重启eslint服务
image.png

报错消失,
完美解决,

你可能感兴趣的:(Parsing error: Cannot read property 'map' of undefined eslint)