리액트 프로젝트에 타입스크립트 세팅하기
2021년 10월 29일
-새 리액트 프로젝트에 타입스크립트 세팅하기
npx create-react-app 프로젝트명 --template typescript
-기존 리액트 프로젝트에 타입스크립트 세팅하기
npm install --save typescript @types/node @types/react @types/react-dom @types/jest
설치 후 기존의 js 파일의 확장자를 tsx로 수정해준다.
Tags