[React-Native] [@types/react] TS2786 타입에러 해결

이명제·2022년 11월 22일

원인

@types/react 18버전에서 react-native 타입과 충돌하는 현상

해결법

package.json 파일에 @types/react 버전이 18버전대라면, 버전을 낮추고, resolutions 부분에 @types/react 버전을 명시해줍니다.

"devDependencies": {
  "@types/react": "17.0.43",
},
...
"resolutions": {
  "@types/react": "17.0.43"
}

그리고 yarn.lock 제거 및 nodemudules 폴더 제거 후에 yarn install 실행

yarn install

0개의 댓글