When I attempt to run TypeScript using a task in Terminal by selecting my Build Typescript task, a message appears saying:
Continue without scanning the task output
https://i.sstatic.net/FFKrm.png
I have reviewed the linked page for solutions but found none. How can I remove this message?
Here is my tasks.json file:
{
"version": "2.0.0",
"tasks": [
{
"label": "Build Typescript",
"command": "tsc"
}
]
}