I want to use cpx as a background task for one of my debugging configurations inside Visual Studio Code. However it has no output and causes this error:
Since cpx does it's job in less then a second I don't need it to be tracked. Is there a way to tell VS Code just to run the task and not track it?
Here's my tasks.json
:
{
"version": "2.0.0",
"tasks": [
{
"script": "cpx",
"type": "npm",
"isBackground": true
}
]
}