Answers for "error: requires babel "^7.0.0-0", but was loaded with "6.26.3"

-1

Error: Requires Babel "^7.0.0-0", but was loaded with "6.26.3". If

npm install --save-dev "babel-core@^7.0.0-bridge.0"
Posted by: Guest on December-29-2020
0

error: requires babel "^7.0.0-0", but was loaded with "6.26.3".

## You'll need to remove the reference to babel-cli since that conflicts with @babel/cli.
## OR
## Ensure @babel packages are on the latest version in package.json
## Remove the package-lock.json and node_modules
## Reinstall using yarn (not npm)
## YOU CAN ALSO TRY
npm install --save-dev [email protected]
Posted by: Guest on December-19-2021

Code answers related to "error: requires babel "^7.0.0-0", but was loaded with "6.26.3"

Code answers related to "Javascript"

Browse Popular Code Answers by Language