I've created a task to run typescript and I go to Terminal > Run Task and select my Build Typescript task.
It then shows the message:
Continue without scanning the task output
I've read the linked page but couldn't find anything. How do I get rid of this message?
tasks.json:
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Typescript",
"command": "tsc"
}
]
}
VS Code maintains a debug session while the program is running, and pressing the Stop button terminates the program.
Task auto-detection# Below is an example of the tasks detected for the vscode-node-debug extension. Tip: You can run your task through Quick Open (Ctrl+P) by typing 'task', Space and the command name.
If you just want that message to not appear for this specific task, then add this to your task:
"problemMatcher": []
If you want your output to be scanned choose or make a problem matcher. You can read more about it in this section of the vs code docs:
Processing task output with problem matchers
In settings.json
you can also set "task.problemMatchers.neverPrompt": true
. This video has a good explanation of it.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With