[Vue3.0]TypeError: this.cliEngine is not a constructor,WebStrom PyCharm

ESLint抛错(MacOS)

TypeError: this.cliEngine is not a constructor

# 修改配置文件
⁨应用程序⁩ ▸ ⁨PyCharm⁩ ▸ ⁨Contents⁩ ▸ ⁨plugins⁩ ▸ ⁨JavaScriptLanguage⁩ ▸ ⁨languageService⁩ ▸ ⁨eslint⁩ ▸ ⁨bin⁩
eslint-plugin.js
this.cliEngine = require(this.basicPath + "lib/cli-engine");
# 修改为
this.cliEngine = require(this.basicPath + "lib/cli-engine").CLIEngine;
# 重启APP应用