DEV Community

Yevhenii Shyshkin
Yevhenii Shyshkin

Posted on

Answer: "Parsing error: No babel config file detected" when IDE not open at Vue projects root directory

Adding the block to settings.json will solve this issue:

"eslint.workingDirectories": [
        {"mode": "auto"}
 ],

To access settings.json file, click Ctrl+, or from, File > Preferences > Settings, then type eslint in the search bar, find Edit in settings.json in Options.

Top comments (0)