This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

semble / .vscode / launch.json
1.1 kB 47 lines
1{ 2 "version": "0.2.0", 3 "configurations": [ 4 { 5 "name": "Backend (dev:mock)", 6 "type": "node", 7 "request": "launch", 8 "runtimeExecutable": "npm", 9 "runtimeArgs": ["run", "dev:mock"], 10 "console": "integratedTerminal", 11 "envFile": "${workspaceFolder}/.env.local", 12 "skipFiles": ["<node_internals>/**"], 13 "restart": true 14 }, 15 { 16 "name": "Webapp Dev", 17 "type": "node", 18 "request": "launch", 19 "runtimeExecutable": "npm", 20 "runtimeArgs": ["run", "webapp:dev"], 21 "console": "integratedTerminal", 22 "cwd": "${workspaceFolder}", 23 "restart": true 24 }, 25 { 26 "name": "Webapp Extension Dev", 27 "type": "node", 28 "request": "launch", 29 "runtimeExecutable": "npm", 30 "runtimeArgs": ["run", "webapp:extension:dev"], 31 "console": "integratedTerminal", 32 "cwd": "${workspaceFolder}", 33 "restart": true 34 } 35 ], 36 "compounds": [ 37 { 38 "name": "Launch All Services", 39 "configurations": [ 40 "Backend (dev:mock)", 41 "Webapp Dev", 42 "Webapp Extension Dev" 43 ], 44 "stopAll": true 45 } 46 ] 47}