vscode 关闭绑定元素 隐式具有“any”类型这类错误

在vue的项目里面,经常看到any类型的报错,真的很烦的
在这里插入图片描述
在tsconfig.json中配置以下参数
“noImplicitAny”: false 就可以了

出现类型“never”上不存在属性“userName”。ts-plugin(2339) 配置该参数
modeuleResolution : node

 "compilerOptions": {
    "noImplicitAny": false,
    "moduleResolution": "node",
  }

在这里插入图片描述

然后保存即可
在这里插入图片描述

上一篇:Linux驱动开发第2步_“物理内存”和“虚拟内存”的映射