현재 우리 eslint-config-settings설정은?

저희 nutri-sync프로젝트의 eslint-config-settings 초기 설정의 경우 https://zenn.dev/yoshinoki/articles/next-ts-tailwind-setting를 대체로 따르고 있습니다.

👀 TypeScript(tsconfig.json) 설정

 {
   "compilerOptions": {
     "lib": ["dom", "dom.iterable", "esnext"],
-    "allowJs": true,
+    "allowJs": false, //false로 함으로써 .js .jsx컴파일 대상외로 할 수 있습니다.
     "skipLibCheck": true,
     "strict": true,
     "noEmit": true,
     "esModuleInterop": true,
     "module": "esnext",
     "moduleResolution": "bundler",
     "resolveJsonModule": true,
     "isolatedModules": true,
     "jsx": "preserve",
     "incremental": true,
+    "forceConsistentCasingInFileNames": true, // 파일 이름의 대소문자를 구별합니다.
+    "noImplicitReturns": true, //반환 값 void이 아닌 함수에서 모든 조건 분기에서 반환 값을 반환하도록 강제합니다.
+    "noUncheckedIndexedAccess": true, // 인덱스형의 프로퍼티나 배열 요소를 참조했을 때 undefined의 체크를 필수로 합니다.
     "plugins": [
       {
         "name": "next"
       }
     ],
     "paths": {
       "@/*": ["./*"]
     }
   },
   "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
   "exclude": ["node_modules"]
 }

👀 .eslintrc.json


모노레포로 이전하면서 기존 프로젝트 세팅들과 달라진점, 그리고 기존 세팅들로 통합하고 최적한 과정

1. Typescript 설정(typescript-config 폴더)

기존 프로젝트 tsconfig.json을 모노레포로 통합