How to make Visual Studio Code check entire project for errors? How to make Visual Studio Code check entire project for errors? javascript javascript

How to make Visual Studio Code check entire project for errors?


VS Code (v1.44) has an experimental feature, that allows project wide error reporting in TS. Try it out:

// put this line in settings.json"typescript.tsserver.experimental.enableProjectDiagnostics": true


Figured it out. Note this answer is specific to TypeScript, which is what I am using. Here it is:

Make sure typescript is installed globally (I just had mine installed locally apparently):npm install -g typescript

Then in VS Code press Shift+Ctrl+B. If you don't have a task runner set up it will ask what you want. I selected typescript and the tasks.json file will look like this:

{    "version": "0.1.0",    "command": "tsc",    "isShellCommand": true,    "args": ["-p", "."],    "showOutput": "silent",    "problemMatcher": "$tsc"}

Then pressing Shift+Ctrl+B (or Shift+Command+B in macOS) will check the entire project for problems and they will be reported in your "problems" panel.


For the most recent version of tasks.json this is the correct json, following deprecations in version 1.14. Create this as /.vscode/tasks.json

{    "version": "2.0.0",    "command": "tsc",    "type": "shell",    "args": [        "-p",        "."    ],    "presentation": {        "reveal": "silent"    },    "problemMatcher": "$tsc"}