Angular 8 - ng lint:超出最大调用堆栈大小时出错

Angular 8 - ng lint: Error in Maximum call stack size exceeded

我对我的项目进行 linting 时遇到问题。 每次我使用 "ng lint" 都会出现以下错误:

$ ng lint
Linting "app"...
An unhandled exception occurred: Maximum call stack size exceeded
See "C:\Users00BR~1\AppData\Local\Temp\ng-owDTzM\angular-errors.log" for further details.
error Command failed with exit code 127.
info Visit https://yarnpkg.com/en/docs/cli/run for documentation about this command.

但是,如果我尝试 运行 应用程序或尝试构建它,对我来说一切正常。

版本:

知道如何解决这个问题,或者有没有办法找到更容易理解的错误?

您可以像这样将脚本添加到 package.json

"scripts": {
    "lint": "node --max_old_space_size=8192 --harmony node_modules/@angular/cli/bin/ng lint"
}

并执行:

npm run lint