mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-27 22:49:56 -05:00
Added Ghost core + Admin
launch config
- this runs the equivalent of `yarn dev` and will just launch Ghost core (+ TS) + Admin, saving all of the other supplementary apps being launched too
This commit is contained in:
parent
a1cc60638a
commit
c466733871
1 changed files with 12 additions and 0 deletions
12
.vscode/launch.json
vendored
12
.vscode/launch.json
vendored
|
@ -4,6 +4,18 @@
|
||||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||||
"version": "0.2.0",
|
"version": "0.2.0",
|
||||||
"configurations": [
|
"configurations": [
|
||||||
|
{
|
||||||
|
"type": "node",
|
||||||
|
"request": "launch",
|
||||||
|
"name": "Ghost core + Admin",
|
||||||
|
"skipFiles": [
|
||||||
|
"<node_internals>/**"
|
||||||
|
],
|
||||||
|
"program": "${workspaceFolder}/.github/scripts/dev.js",
|
||||||
|
"autoAttachChildProcesses": true,
|
||||||
|
"outputCapture": "std",
|
||||||
|
"console": "integratedTerminal",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"type": "node",
|
"type": "node",
|
||||||
"request": "launch",
|
"request": "launch",
|
||||||
|
|
Loading…
Add table
Reference in a new issue