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"
}
]
}