본문 바로가기
React 입문자 꼬리표 떼기/Frontend Setup

1. Project Setup

by SmileRush 2022. 2. 12.
반응형

프로젝트 설치

$ npx create-react-app . —template typescript

 

지금은 사용하지 않아서 그저 package.json의 가독성을 어렵게만 하는 라이브러리들 제거

$ npm rm @testing-library/jest-dom
$ npm rm @testing-library/react
$ npm rm @testing-library/user-event
$ npm rm @types/jest
$ npm rm web-vitals

 

반응형

'React 입문자 꼬리표 떼기 > Frontend Setup' 카테고리의 다른 글

6. Grid Layout #1  (0) 2022.02.14
5. Apply Styled-Components  (1) 2022.02.12
4. TypeScript - Object (객체)  (1) 2022.02.12
3. Divide (Pages) Components  (1) 2022.02.12
2. Create Pages  (1) 2022.02.12

댓글