You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Open launch.json and change the outDir values to use ${workspaceRoot}
Hit F5
You get this error:
Open the task log and you'll see this:
Meaning that the npm task failed to execute.
When I run that task in the terminal, I can confirm that it returns a non-zero value. So why isn't Debug picking that up and informing me that the problem occurred in the task itself?
The text was updated successfully, but these errors were encountered:
After talking to @dbaeumer there is a limitation in the task framework for this.
We need API to provide functionality of running a watch task that would return a TaskSummary both in the success and error case.
Once @dbaeumer adds API I can use it to address this issue, until then -> backlog.
launch.json
and change theoutDir
values to use${workspaceRoot}
You get this error:
Open the task log and you'll see this:
Meaning that the
npm
task failed to execute.When I run that task in the terminal, I can confirm that it returns a non-zero value. So why isn't Debug picking that up and informing me that the problem occurred in the task itself?
The text was updated successfully, but these errors were encountered: