Home > Back-end >  Project wide diagnostics in Deno?
Project wide diagnostics in Deno?

Time:12-01

I'm trying to get errors from all files in a project, not only open files.

Is there a Deno version of this setting:

"typescript.tsserver.experimental.enableProjectDiagnostics": true

A command to scan entire project for errors from terminal would also work.

I'm using VSCode and Deno 1.28.2.

Thanks in advance!

CodePudding user response:

Refer to the Type Checking section of the manual page “Overview of TypeScript in Deno”.

You can type-check your code (without executing it) using the following command:

deno check module.ts

This will type-check all local modules involved in the module graph: all imports of that module — and imports of imports, etc. — on your file system, and emit compiler diagnostics for any problems.

  • Related