Terminate another task from within a postDebugTask - VS Code
问题 I have a debug launch configuration ( launch.json ) like below. { "version": "0.2.0", "configurations": [ { "name": "Current TS File", "type": "node", "request": "launch", "preLaunchTask": "Pre Debug Task", "postDebugTask": "Stop Watch Styles", "args": ["${relativeFile}"], "runtimeArgs": ["--nolazy", "-r", "ts-node/register"], "sourceMaps": true, "cwd": "${workspaceRoot}", "protocol": "inspector", } ] } My tasks configuration ( tasks.json ) is like { "version": "2.0.0", "tasks": [ { "type":