mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-30 22:34:01 -05:00
Added backend launch task
This is useful for debugging serverside code paths
This commit is contained in:
parent
3b0f99d455
commit
73a2776fe9
1 changed files with 15 additions and 0 deletions
15
.vscode/launch.json
vendored
15
.vscode/launch.json
vendored
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue