launch.json
1 { 2 "version": "1.0.0", 3 "compounds": [ 4 { 5 "name": "Debug Run", 6 "configurations": [ 7 "Debug App" 8 ], 9 "presentation": { 10 "hidden": false, 11 "group": "", 12 "order": 1 13 }, 14 "stopAll": true 15 } 16 ], 17 "configurations": [ 18 { 19 "name": "Debug App", 20 "request": "launch", 21 "type": "node", 22 "timeout": 60000, 23 "runtimeArgs": [ 24 "run-script", 25 "dev" 26 ], 27 "cwd": "${workspaceRoot}", 28 "runtimeExecutable": "npm", 29 "console": "integratedTerminal" 30 } 31 ] 32 }