eslint의 parser가 공식적으로 ES 표준만을 지원하기 때문에, ES6~7 파싱 시 문제가 생긴다.
따라서,
.eslintrc.js
파일의 export default를 module.export로 변경하기export는 ES6 syntax이고, module export는 commonJS syntax이다.
babel-eslint 설치 후
.eslintrc.js
에"parser": "babel-eslint",
추가하기
두 방법 중 하나를 사용하면 된다.
반응형
'웹 (WEB) > 에러해결' 카테고리의 다른 글
[React] React hook + Material UI error :: findDOMNode is deprecated in StrictMode. (4) | 2020.12.20 |
---|---|
[React] React JSX에서 forEach 안될 때 (0) | 2020.12.20 |
[Typescript] TS2691: import .ts file (0) | 2020.12.14 |
[ESLint] The react-srcipts package provided by Create React App requires a dependency :: 의존성 문제 (2) | 2020.12.03 |
[ESLint] createRequire is not a function Referenced from: ... (0) | 2020.12.03 |
Comment