😊에러 전문
Parsing error: ESLint was configured to run on `<tsconfigRootDir>/.eslintrc.cjs` using `parserOptions.project`: <tsconfigRootDir>/tsconfig.json However, that TSConfig does not include this file. Either: - Change ESLint's list of included files to not include this file - Change that TSConfig to include this file - Create a new TSConfig that includes this file and include it in your parserOptions.project See the typescript-eslint docs for more info: https://typescript-eslint.io/linting/troubleshooting#i-get-errors-telling-me-eslint-was-configured-to-run--however-that-tsconfig-does-not--none-of-those-tsconfigs-include-this-fileeslint
😐발생 이유
vite을 이용해
npm create vite@latest
으로 구성한 프로젝트에서 다음과 같은 에러가 발생했습니다.
읽어보면 Eslint의 parserOptions.project 프로퍼티에 설정된 값이 제대로 동작하지않고있다는 문제입니다.
.eslintrc.cjs
/* eslint-env node */
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:react-hooks/recommended',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: true,
tsconfigRootDir: __dirname,
},
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
'@typescript-eslint/no-non-null-assertion': 'off',
}
}
이런식으로 eslintrc가 작성되어있는데
eslintrc.cjs에서 문제가 발생하는 상황입니다.
실행에 문제가 되진 않으니까 간단하게 무시를 하고 싶은데 방법을 모르네요
😍트리키한 해결방법
/* eslint-env node */
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:react-hooks/recommended',
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
project: true,
tsconfigRootDir: __dirname,
},
plugins: ['react-refresh'],
rules: {
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
'@typescript-eslint/no-non-null-assertion': 'off',
},
ignorePatterns: ['.eslintrc.cjs'],
}
eslintrc.cjs에 ignorePatterns:['.eslintrc.cjs']를 추가해주면 됩니다.
반응형
'frontend' 카테고리의 다른 글
Barrel export 패턴으로 깔끔한 import 관리 (0) | 2023.08.06 |
---|---|
프론트엔드 CORS 에러 핸들링 빠르고 강한 정리 (0) | 2023.07.24 |
nextjs 13 typescript 환경에서 eslint airbnb 에 husky, gitmoji, lint-staged까지? (0) | 2023.07.11 |
ts react vite mui 보일러플레이트 만들기 (0) | 2023.07.10 |
CloudFlare를 이용해 Next.js 프로젝트 Static하게 배포하기 (2) | 2023.06.27 |