React.js 프로젝트 만들기(Typescript)

npx create-react-app 이름 --typescript

Typescript 초기화(tsconfig.json 생성)

npx tsc --init
# npx typescript --init # 구버전

eslint, prettier 모듈 설치

npm i --dev eslint prettier
# yarn add -D eslint prettier