create-react-app

React

React | CRA + TypeScript + Airbnb style guide 초기세팅

1. 프로젝트 파일 생성 npx create-react-app --template typescript 2. ESLint 설치 npm install -D eslint @typescript-eslint/eslint-plugin @typescript-eslint/parser 2-1) .eslintrc 파일 생성 { "parser": "@typescript-eslint/parser", "plugins": ["@typescript-eslint"], "extends": ["plugin:@typescript-eslint/recommended"] } 2-2) package.json 에 script 추가 //pagckage.json { ... "scripts": { "lint": "eslint './src/**/*.{t..

3jun
'create-react-app' 태그의 글 목록