ERROR(TypeScript)

288 阅读1分钟

ERROR(Typescript) Option 'suppressImplicitAnyIndexErrors' is deprecated and will stop functioning in TypeScript 5.5. Specify compilerOption '"ignoreDeprecations": "5.0"' to silence this error.

image.png

错误原因:

1] 运行环境:vue3+typescript5.0

2] 解决办法:typescript官网中TypeScript: Documentation - TypeScript 5.4 (typescriptlang.org)提到,tsconfig.json中 -suppressExcessPropertyErrors这个属性在5.5.版本中将成为硬错误,typescript5.4将是这个属性正常运行的最后一个版本,要想运行不报错,需要在tsconfig.json中指定 "ignoreDeprecations":"5.0",运行将不会出错。