Vue でプロジェクトを作成しようとしています。しかし、プロジェクトを作成した後にこの問題が発生しました。
Parsing error: No Babel config file detected for C:\\HotelManagmet\clienthotel\babel.config.js. Either disable config file checking with requireConfigFile: false, or configure Babel so that it can find the config files.
解決できません。node.js と Visual Studio Code を再インストールしてみましたが、問題は解決しません。npm Audit Fix --force を実行してみましたが、残念ながら結果は同じです。原因がわかる方はいらっしゃいますか?
ベストアンサー1
私も同じ問題を抱えていましたが、この変更で問題は解決しました。.eslintrc.js
ファイルに以下を追加してください。requireConfigFile: false
parserOptions: {
parser: '@babel/eslint-parser',
requireConfigFile: false, // <== ADD THIS
ecmaVersion: 2018, // Allows for the parsing of modern ECMAScript features
sourceType: 'module' // Allows for the use of imports
}