From bec80115fc5d5262327c635a9ae81afc4d3afb56 Mon Sep 17 00:00:00 2001 From: Nikurasu Date: Fri, 14 Oct 2022 09:51:30 +0200 Subject: [PATCH] Added vscode launch scripts --- .vscode/launch.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..c5ae68d --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,25 @@ +{ + // 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": "start", + "skipFiles": [ + "/**" + ], + "program": "${workspaceFolder}/src/index.js" + }, + { + "type": "node", + "name": "dev", + "request": "launch", + "cwd": "${workspaceRoot}", + "runtimeExecutable": "yarn", + "runtimeArgs": ["dev"], + } + ] +} \ No newline at end of file