본문 바로가기

카테고리 없음

react with typescript

VSCode 에서 PS에서 입력

1. npm 설치와 VSCode는 검색하면 나오니 아래를 입력

npx create-react-app my-app --template typescript

 

2. App.tsx에 들어가서 보니 "Could not find a declaration file for module 'react'." 에러 발생

 

3. 아래와 같이 입력

npm install -D @types/react

 

4. App.tsx에 들어가서 보니 "Could not find a declaration file for module 'react-dom'." 에러 발생

 

5.아래와 같이 입력

npm install -D @types/react-dom

6. npm start