From 4a1c39559aacded6c2c4661d99c8ef8ea0a86b0d Mon Sep 17 00:00:00 2001 From: smartfridge <37928912+smartfrigde@users.noreply.github.com> Date: Wed, 5 May 2021 13:27:01 +0200 Subject: [PATCH] Add VSCode Launch option --- .vscode/launch.json | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..321b5ee --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,22 @@ +{ + // 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": "Debug ArmCord via NPM", + "runtimeExecutable": "npm", + "runtimeArgs": [ + "start", + "debug", + ], + "port": 9229, + "skipFiles": [ + "/**" + ] + }, + ] +} \ No newline at end of file