From 97584cf0c42a97eafb0371b7b7798ebb5e4e0179 Mon Sep 17 00:00:00 2001 From: "Fabien \"egg\" O'Carroll" Date: Tue, 2 May 2023 07:28:36 -0400 Subject: [PATCH] Added .vscode/launch.json to git Rather than sending each other JSON snippets in slack, we can build shared configurations for the vscode debugger. --- .gitignore | 1 + .vscode/launch.json | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.gitignore b/.gitignore index 7a6ed9d245..c82c66ed44 100644 --- a/.gitignore +++ b/.gitignore @@ -66,6 +66,7 @@ typings/ *.iml *.sublime-* .vscode/* +!.vscode/launch.json # OSX .DS_Store diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000000..f9cc458fdc --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,38 @@ +{ + // 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": "Full Dev", + "skipFiles": [ + "/**" + ], + "program": "${workspaceFolder}/.github/dev.js", + "args": [ + "--all" + ], + "autoAttachChildProcesses": true, + "outputCapture": "std", + "console": "integratedTerminal", + }, + { + "type": "node", + "request": "launch", + "name": "Full Offline Dev", + "skipFiles": [ + "/**" + ], + "program": "${workspaceFolder}/.github/dev.js", + "args": [ + "--all --offline" + ], + "autoAttachChildProcesses": true, + "outputCapture": "std", + "console": "integratedTerminal", + } + ] +} \ No newline at end of file