개발공작소
728x90
article thumbnail
[기타] VScode Vetur can't find tsconfig.json, jsconfig.json in /xxxx/xxxxxx. 에러
기타 2022. 2. 12. 20:10

오늘 VScode로 이것저것 만지고 있는데 아래와 같은 에러(?)가 발생했다. VScode 우측하단에 이런 경고창이 떴는데 내용은 이렇다. Vetur can't find tsconfig.json or jsconfig.json in c:\Users\admin\Documents\Project. tsconfig.json파일과, jsconfig.json파일을 찾을 수 없다는 것. 해결방법은 root 경로에 해당 파일 2개를 추가해주면 된다. tsconfig.json // tsconfig.json { "compilerOptions": { "baseUrl": ".", "paths": { "@/*": [ "src/*" ] } } } jsconfig.json { "include": [ "./src/**/*" ] } 이..

728x90