报错:Parameter ‘XXX’ implicitly has an ‘any’ type.解决方法

tsconfig.json添加"noImplicitAny": false,

或者 “strict”: true,改为false

{
  "compilerOptions": {
    "target": "es5",
    "module": "commonjs",
    "moduleResolution": "node",
    "sourceMap": true,
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "removeComments": false,
    "strict": false, //<---或者修改这个
    "noImplicitAny": false // <-----
  }
}
Logo

基于 Vue 的企业级 UI 组件库和中后台系统解决方案,为数万开发者服务。

更多推荐