개발/Today I Learned

[TIL] [eslint] package.json » eslint-config-react-app/jest#overrides[0]: environment key "jest/globals" is unknown

SlowButSteady 2022. 8. 23. 00:07
728x90

 

package.json 에서

"react-app/jest" 삭제하고 아래의 react-app만 남겨준다.

"eslintConfig": { "extends": [ "react-app" ] },

 

이렇게 해주니

[eslint] package.json » eslint-config-react-app/jest#overrides[0]: environment key "jest/globals" is unknown

에러가 해결되었다.

 

 

💡Reference💡