본문 바로가기
개발 환경/Setting&Tip

[eslint] Error: 'process' is not defined

by oyeahhh 2020. 12. 24.

발생

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
    },
    ...
}

출처

댓글