hoony's web study

728x90
반응형

어제까지만해도 잘 되던것이 왜 오늘은 안되는지? 

 

module.exports = {
    "env": {
        "node":true, <= 추가해준 부분
        "browser": true,
        "es2020": true
    },
    "extends": [
        "eslint:recommended",
        "plugin:vue/essential"
    ],
    "parserOptions": {
        "ecmaVersion": 11,
        "sourceType": "module"
    },
    "plugins": [
        "vue"
    ],
    "rules": {
        "vue/multi-word-component-names": ["error", {
            "ignores": ["default", "Login", "Home", "About"]
          }],
        'vue/no-deprecated-slot-attribute': 'off'
    },   
};

.eslintrc.js 의 파일내에 "node":true 추가를 하시면 깔끔하게 오류가 해결이 됩니다.

반응형


https://stackoverflow.com/questions/50894000/eslint-process-is-not-defined/50894051#50894051

 

ESLint - 'process' is not defined

I am using ESLinter for a simple node project. Below is the only code I have in index.js: const express = require('express'); const app = express(); app.get('/', (req, res) => { res.send(...

stackoverflow.com

 

728x90

공유하기

facebook twitter kakaoTalk kakaostory naver band
loading