구글링을 해봐도 @types/styled-components-react-native
를 설치하라는 글만 보였는데 설치해도 해결되지 않았다.
npm i -D @types/styled-components-react-native
설치후tsconfig.json
설정
tsconfig.json
{
"extends": "@tsconfig/react-native/tsconfig.json",
"compilerOptions": {
/** ... **/
// types 속성을 추가해준다
"types": ["@types/styled-components-react-native"]
}
/** ... **/
}
에러가 해결되었다.