[SOLVED] babel-core dependancy
Opened this issue · 0 comments
Nioub commented
Hi,
Trying to compile at the hello-world step, I got this error :
babel-loader@8 requires Babel 7.x (the package '@babel/core'). If you'd like to use Babel 6.x ('babel-core'), you should install 'babel-loader@7'.
Pay attention to the syntax : "@babel/core" vs "babel-core".
So I added @babel/core instead of babel-core, and the compilation worked :
npm un babel-core
npm i -D @babel/core
Best regards,