본문 바로가기
💻CODING/javascript

[ts] Could not find a declaration file for module 'react'

by 코딩하는 갓디노 2021. 9. 13.

 

react에서 typescript를 설치하고 
app.tsx 에서 router를 설치하는데 이런 오류가 나왔습니다. 

 

오류 메시지

Could not find a declaration file for module 'react'. '/Users/inkijo/Documents/react-test/my-books/node_modules/react/index.js' implicitly has an 'any' type.
  If the 'react' package actually exposes this module, consider sending a pull request to amend 'https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react'  TS7016

 

오류  해결

typescript용  react, react-dom을 추가 설치해줍니다.

npm install --save @types/react @types/react-dom
반응형

댓글