Windows 환경에서 Create React App을 이용하여 React SPA을 추가하고 TypeScript 설정까지 목표로 하는 포스팅이다.
npx create-react-app my-app --template typescript
먼저 프로젝트를 VS code를 이용해 개발할 환경을 열어보겠다! VS code를 선택한 이유는 플러그인 설치도 쉽고 가볍게 돌아가며 다양한 언어를 지원해서다. Visual Studio Code 설치 후 폴더 열기로 프로젝트를 열어준다.
npm i --save-dev eslint @typescript-eslint/parser @typescript-eslint/eslint-plugin
npm install --save-dev eslint-plugin-react eslint-plugin-react-hooks eslint-plugin-jsx-a11y
npm install --save-dev prettier eslint-config-prettier eslint-plugin-prettier
npx eslint src