카테고리 없음

종속성 충돌 발생

woody-j 2023. 12. 25. 20:25

 

 

타입스크립트 버전과 다른 패키지 간의 충돌이라 생각했다.

npm list typescript

 

이 코드로 타입스크립트의 버전을 확인하고 호환되는 버전인지 확인

 

그 결과, 🌟뾰로롱🌟

 

 

우선 error log를 보면 typescript@5.3.3 설치 완료.

react-scripts와 @typescript-eslint/eslint-plugin등이 해당 버전과 호환되지 않는다는 말씀

=> 타입스크립트 버전이나 종속성 패키지 버전을 조정 필요

 

해결 방법

이것 저것 해보다가, 계속 되는 오류에 

기존 패키지를 모두 제거하고 다시 설치했다

npm uninstall typescript react-scripts @typescript-eslint/eslint-plugin 
npm install typescript@4.5.4 react-scripts@latest

 

 

문득 안쓰는 패키지도 삭제하고 정리하고 싶어졌다.

다음번엔 패키지 정리를