Could not find a declaration file for module 'styled-components/native' 해결

Potato·2023년 5월 25일
0

React Native

목록 보기
2/8

Styled-Components 와 React Native, TypeScript 사용시 import 오류

에러

image React Native 에서 Styled-Components와 TypeScript를 사용시 항상 위 사진처럼 `Could not find a declaration file for module `styled-components/native`... 에러가 발생한다.

구글링을 해봐도 @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"]
  }
  /** ... **/
}

해결

image

에러가 해결되었다.

0개의 댓글