17
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

初投稿!Parsing error

Posted at

Vue.js 初エラー

Vue.jsでアプリ開発してみようという事で、
初めて vue create (ファイル名) を実行しました。

すると、どのファイルを開いても以下のエラーが出てきました。


"Parsing error: No Babel config file detected for....

調べてみたところ、
VS Codeで、Vueプロジェクトが作成され、Vueプロジェクトのルートディレクトリで開かれていない場合、babel.config.jsが読み込まれず、IDEがbabelconfigの場所について混乱するという問題に遭遇する。
とのこと

解決策

VScodeのsetting.jsonに以下を追記

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

settings.jsonファイルにアクセスするには、[Ctrl+,ファイル]>[設定]>[設定]をクリックし、検索バーにeslintと入力して、[オプション]の[settings.json]で[編集]があります。

これで私は解決できました。
私と同じく初学者の方などの参考に少しでもなれたら嬉しいです。

参考記事

17
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
17
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?