package.json
"eslintConfig": { "extends": [ "react-app", "react-app/jest" ] },
package.json
"eslintConfig": { "extends": [ "react-app", "react-app/jest" ] },
I just have the same error: for some reason, your react-scripts
package is too old (mine was 1.1.5
). Find and change it in package.json
to a more up-to-date version, say 4.0.3
, then run npm update
to solve the issue.