이 에러메시지는 eslintrc.js의 parserOption이 제대로 설정되지 않아서 생기는 문제이다.
// .eslintrc.js
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
tsconfigRootDir: __dirname,
sourceType: 'module',
},
위 처럼 설정을 해주면 정상적으로 작동한다.
나의 경우, tsconfigRootDir이 설정되어 있지 않았다.
'개발환경' 카테고리의 다른 글
[Node] node, npm version 변경 안될 때, 업데이트 하는 방법 (0) | 2023.05.13 |
---|---|
node, npm 버젼 변경 (0) | 2023.01.30 |
[Solved] vscode code 명령어 사라짐 현상 (command not found: code) (0) | 2022.10.09 |
[Solved]Bitbucket Cloud recently stopped supporting account passwords for Git authentication. (ssh키 설정하기, app 비밀번호 설정, git remote 추가 삭제) (0) | 2022.07.27 |
visual studio code 저장시 자동 format 설정(formatOnSave) (0) | 2022.07.06 |