Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 컴퓨터과학총론
- ubuntu
- centOS7
- 번역
- 한글
- kakao
- it
- 구글
- unity
- MySQL
- mariadb
- javascript
- 해석
- 안드로이드
- android
- C lanuage
- php
- 개발자
- java
- 개발
- error
- 자바
- caddy
- NGINX
- 프래그먼트
- H2O
- techEmpower
- Portfolio
- C
- server
Archives
- Today
- Total
개발모음집
TypeError: this.cliEngine is not a constructor 본문
webstorm에서 eslint 적용 후
TypeError: this.cliEngine is not a constructor
위와 같은 에러 발생
webstorm 버전을 2018.3.6 버전으로 업데이트하고, eslint 버전을 6.6에서 5.16.0으로 변경하라는 글이 있어서 변경하였더니 에러 해결
변경 방법
1. node_modules/eslint 삭제
2. package.json devDependencies의 eslint 버전을 아래와 같이 변경한 후에 `npm i` 명령어로 eslint 모듈 설치
...
"devDependencies": {
"eslint": "^5.16.0"
}
...
참고 : https://github.com/eslint/eslint/issues/11957
'client' 카테고리의 다른 글
How to insert js file in js file in client side (0) | 2019.11.28 |
---|---|
Node.JS : WebStorm “require”사용시 Unresolved function or method Error (0) | 2019.11.27 |
JSON 구조를 객체쓰지 않고 만들때 실수한 점 (0) | 2019.10.14 |
webstorm terminal console font size (0) | 2019.07.29 |
javasrcript crawler, puppeteer RR_TUNNEL_CONNECTION_FAILED (0) | 2019.06.14 |