{ // Use IntelliSense to learn about possible attributes. // Hover to view descriptions of existing attributes. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Launch Program", "skipFiles": [ "/**" ], "program": "${file}" }, { "name": "NPM Start Admin", "type": "node", "request": "launch", "cwd": "${workspaceFolder}/admin", "runtimeExecutable": "npm", "runtimeArgs": [ "run", "start" ], "console": "integratedTerminal", }, { "name": "NPM Start LIB", "type": "node", "request": "launch", "cwd": "${workspaceFolder}/admin", "runtimeExecutable": "ng", "runtimeArgs": [ "build", "@rschneider/ng-daisyui", "--watch" ], "console": "integratedTerminal" }, { "name": "NPM Start REST", "type": "node", "request": "launch", "cwd": "${workspaceFolder}/server", "runtimeExecutable": "npm", "runtimeArgs": [ "run", "start:dev" ], "preLaunchTask": "Docker Up (Environment)", "console": "integratedTerminal" } ], "compounds": [ { "name": "Full Stack: Docker + App + GUI", "configurations": [ "NPM Start LIB", "NPM Start Admin", "NPM Start REST" ], "stopAll": true } ] }