Typescript를 시작하게 되었는데, typescript로 두근두근 하고 싶다면 환경설정 부터 시작해보자
$ npm i typescript -g
# or, using Yarn:
$ yarn global add typescript
$ npm i typescript --save-dev
# or, using Yarn:
$ yarn add typescript --dev
React 프로젝트에서 Typescript 사용할 경우
npm install --save typescript @types/node @types/react @types/react-dom @types/jest
# or
yarn add typescript @types/node @types/react @types/react-dom @types/jest
# npx <CRA> <프로젝트명> --template typescript
npx create-react-app my-app --template typescript
# or
yarn create react-app my-app --template typescript