[Turborepo + React Native] react-native-paper 설치 오류

2024. 3. 21. 16:33프론트엔드/React Native

반응형

 

혹시나 까먹을까 바로 기록..

5시간 삽질의 결과물이다..

 

1.

// Error
Unable to resolve "react-native-safe-area-context" from "..\..\node_modules\react-native-paper\src\components\Dialog\Dialog.tsx"

 

해결방안

// @repo/ui 는 react-native-paper가 설치된 패키지명

yarn workspace @repo/ui add react-native-safe-area-context




 

2. 

// Error 
Unable to resolve "@babel/runtime/helpers/interopRequireDefault" from "index.js"

 

해결방안

// native 부분은 리액트 네이티브가 실행될 패키지 ( 초기 생성시 native임 )

yarn workspace native add --save-dev @babel/runtime @babel/runtime-corejs3 @babel/plugin-transform-runtime

 

반응형