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
반응형
'개발 > Javascript' 카테고리의 다른 글
[js] alert, console.log 출력시 [object Object] 오류 해결 방법 (0) | 2021.10.14 |
---|---|
[js] 자바스크립트로 시간차 지연 출력 (ft. for문, setTimeout, react) (0) | 2021.10.08 |
[js] 만 나이 계산하기 (0) | 2021.09.09 |
[js] day.js 사용법 (ft. 날짜, 시간 라이브러리, moment.js) (0) | 2021.09.09 |
[js] 스크롤 이동, 스크롤 현재 위치 (ft. scrollTop, scrollIntoView) (0) | 2021.09.03 |
댓글