이 프로젝트는 유튜브 채널 Reactiive 의 영상을 바탕으로 스터디를 진행한 내용을 담고 있습니다.
react 18 배포와 함께 @types/react
버전이 18로 올라감에 따라 기존 라이브러리와 타입 충돌 이슈 가 있습니다.
현재 @types/react-native
의존성은 아래와 같습니다.
{
"dependencies": {
"@types/react": "*"
}
}
package.json
에 @types/react
에 대한 resolution 설정으로 해결하였습니다.
{
"resolutions": {
"@types/react": "~17.0.21"
}
}
{
"resolutions": {
"react-devtools-core": "4.14.0"
}
}