발생
var process: NodeJS.Process
'process' is not defined. eslint[no-undef](https://eslint.org/docs/rules/no-undef)
해결
.eslintrc.json
파일에서 설정 수정browser
대신 node
로 변경 (혹은 "node": true
추가)
{
"env": {
"node": true,
"commonjs": true,
"es2021": true
},
...
}
출처
'개발 환경 > Setting&Tip' 카테고리의 다른 글
[eclipse] tab size 변경 (0) | 2020.12.28 |
---|---|
[PowerShell] Error: 이 시스템에서 스크립트를 실행할 수 없으므로 ... (1) | 2020.12.24 |
[ VSCode ] JShint , ES6 설정하기 (0) | 2017.09.03 |
[ WebStorm ] Javscript ECMAScipt 6 설정하기 (0) | 2017.08.31 |
[ WebStorm ] 프로젝트를 깃허브로 연결하기 (0) | 2017.08.31 |
댓글