From 077b46fde777db61c51ad683072dfc3658044a1b Mon Sep 17 00:00:00 2001 From: JandereDev Date: Mon, 18 Apr 2022 15:11:48 +0200 Subject: [PATCH] never meant to commit this --- .vscode/launch.json | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 4c74138..091e858 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,9 +4,27 @@ // 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": "Debug", + "name": "Bridge", "request": "launch", "type": "node-terminal", }