Parsing error: Cannot read file '...tsconfig\file' 해결 방법

vSsongv·2022년 6월 11일
0

My Curiosity

목록 보기
6/9

git organization repository를 fork 받아서 clone한 후 의존성을 맞춰 준 후 작업을 위해 파일을 클릭하는데,,!

모든 파일의 상단에 아래 에러 메시지가 발생했다..!!😭

에러 메시지를 자세히 읽어 보니, tsconfig\file 파일을 읽어올 수 없다는 의미였다.
eslint상에서 발생한 에러로서, 해당 파일의 경로를 추가해줌으로써 제대로 된 파일 경로를 찾도록 해야 했다.

해결방법

.eslintrc.js 파일에서 아래 내용을 추가해 주면 된다.

overrides: [
    {
      files: ['*.ts', '*.tsx'],
      rules: {
        'no-unused-vars': 'off',
        '@typescript-eslint/no-unused-vars': ['error'],
        '@typescript-eslint/no-shadow': ['error'],
        'no-shadow': 'off',
        'no-undef': 'off',
      },
      //이 부분을 추가해주자!
      parserOptions: {
        project: ['tsconfig.json'],
        createDefaultProgram: true,
      },
    },
  ],

에러 메시지가 사라졌다! 👍🏻

profile
wanna be bright person✨ Front-End developer

0개의 댓글