저희 nutri-sync프로젝트의 eslint-config-settings 초기 설정의 경우 https://zenn.dev/yoshinoki/articles/next-ts-tailwind-setting를 대체로 따르고 있습니다.
{
"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"]
}
기존 프로젝트 tsconfig.json을 모노레포로 통합
ES2015
-> 모노레포 ES2022
bundler
-> 모노레포 NodeNext