ice icon indicating copy to clipboard operation
ice copied to clipboard

多版本类型依赖导致类型错误

Open Dogtiti opened this issue 2 years ago • 3 comments

image image

Dogtiti avatar May 06 '22 11:05 Dogtiti

npm list @types/react 看下是否有多个 types 的版本

ClarkXia avatar May 09 '22 04:05 ClarkXia

npm list @types/react 看下是否有多个 types 的版本

image 好像确实有几个版本,这个要怎么处理呢 @ClarkXia

Dogtiti avatar May 09 '22 07:05 Dogtiti

如果用的是 yarn 可以试下用 resolutions 锁定下:

"resolutions": {
  "@types/react": "17.0.44"
}

ClarkXia avatar May 10 '22 06:05 ClarkXia