old-automod/.vscode/launch.json

32 lines
915 B
JSON

{
// 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": [
{
"command": "cd bot && yarn dev",
"name": "Bot",
"request": "launch",
"type": "node-terminal",
},
{
"command": "cd api && yarn dev",
"name": "API",
"request": "launch",
"type": "node-terminal",
},
{
"command": "cd web && yarn dev",
"name": "Web",
"request": "launch",
"type": "node-terminal",
},
{
"command": "cd bridge && yarn dev",
"name": "Bridge",
"request": "launch",
"type": "node-terminal",
}
]
}