Added backend launch task

This is useful for debugging serverside code paths
This commit is contained in:
Fabien "egg" O'Carroll 2024-01-17 15:06:41 +07:00 committed by Fabien 'egg' O'Carroll
parent 3b0f99d455
commit 73a2776fe9
1 changed files with 15 additions and 0 deletions

15
.vscode/launch.json vendored
View File

@ -4,6 +4,21 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Backend",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/.github/scripts/dev.js",
"args": [
"--ghost"
],
"autoAttachChildProcesses": true,
"outputCapture": "std",
"console": "integratedTerminal",
},
{
"type": "node",
"request": "launch",