mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-22 02:45:44 +03:00
Added backend launch task
This is useful for debugging serverside code paths
This commit is contained in:
parent
3b0f99d455
commit
73a2776fe9
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 New Issue
Block a user