ABC
ABC

Reputation: 591

How to detect all Typescript and ESLint errors in NextJS project, not just in opened files?

I am working on a NextJS project and I want to see the errors and warnings from all the project, not just from opened files.

How can I do this ?

Upvotes: 2

Views: 1585

Answers (1)

Mirco S.
Mirco S.

Reputation: 2610

I'm assuming your using vscode. There is an experimental feature which is described in this answer which can enable project wide checks:

"typescript.tsserver.experimental.enableProjectDiagnostics": true

Upvotes: 4

Related Questions