VueJS/VueJS
[ Vue ] Vue3 Parsing Error : 바벨 구성요소를 찾지 못하는 오류
shiro21
2022. 7. 27. 12:15
반응형
Parsing error: No Babel config file detected for /Users/junhyeok/project/new/vue_crud/frontend/src/components/Main/MainComponent.vue. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files
Vue3 파싱 오류입니다. eslint에서 인식하는 부분에서 나타나는 오류거나, 프로젝트 루트 디렉토리에 .eslintrc.json파일이 없으면 ESLint가 작업 디렉토리를 자동으로 찾지 못할 수 있다고 합니다.
해결방법
F1 -> setting -> 드래그 내용을 추가합니다.
"eslint.workingDirectories": [
{"mode": "auto"}
],
반응형