1. 아래 글을 베이스로 초기 세팅을 진행해준다
2. EsLint와 Prettier 파일을 다음과 같이 수정해준다
[.eslintrc.js]
module.exports = {
parser: "@typescript-eslint/parser",
plugins: ["@typescript-eslint", "prettier"],
extends: [
"airbnb",
"prettier",
"plugin:react/recommended",
"plugin:jsx-a11y/recommended",
"plugin:import/errors",
"plugin:import/warnings",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended",
],
rules: {
"linebreak-style": 0,
"import/prefer-default-export": 0,
"import/extensions": 0,
"no-use-before-define": 0,
"import/no-unresolved": 0,
"react/react-in-jsx-scope": 0,
"import/no-extraneous-dependencies": 0,
"no-shadow": 0,
"react/prop-types": 0,
"react/jsx-filename-extension": [
2,
{ extensions: [".js", ".jsx", ".ts", ".tsx"] },
],
"jsx-a11y/no-noninteractive-element-interactions": 0,
"@typescript-eslint/explicit-module-boundary-types": 0,
"prettier/prettier": ["error", { endOfLine: "auto" }],
},
settings: {
"import/resolver": {
node: {
extensions: [".js", ".jsx", ".ts", ".tsx"],
},
},
},
};
[prettierrc.js]
{
"singleQuote": false,
"semi": true,
"useTabs": false,
"tabWidth": 2,
"trailingComma": "all",
"printWidth": 80,
"arrowParens": "always",
"orderedImports": true,
"bracketSpacing": true,
"jsxBracketSameLine": false
}
[.vscode/settings.json]
{
"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"window.zoomLevel": 0,
"editor.formatOnSave": true,
"[javascript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[javascriptreact]":{ "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[typescript]": { "editor.defaultFormatter": "esbenp.prettier-vscode" },
"[typescriptreact]": { "editor.defaultFormatter": "esbenp.prettier-vscode" }
}
settings.json 관련 설정은 .vscode 폴더를 생성해 넣어주자
[tsconfig.json]
{
"compilerOptions": {
"target": "es6",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"baseUrl": "src",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx"
},
"include": [
"src"
],
}
* src를 절대경로로 가진다
3. 불필요한 파일들을 삭제 및 정리해준다
- public 폴더: index.html 주석, logo192.png, logo512.png, manifest.json, robots.txt
- src 폴더: App.test.tsx, App.css, index.css, logo.svg, setupTests.ts
'Front-end > React' 카테고리의 다른 글
[TIL] react-animation-on-scroll 간단한 스크롤 애니메이션 (0) | 2022.04.25 |
---|---|
[TIL] React에서 utterances 구현하기 (0) | 2022.04.24 |
[TIL] Gatsby 템플릿으로 React 홈페이지 만들기 (10) | 2022.02.10 |
[TIL] progress 태그 애니메이션 (2) | 2022.02.07 |
[TIL] React 토스트 메시지 (6) | 2022.01.27 |