Skip to content

Commit

Permalink
Created launch config for running serve-dev in debugger.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradleyDean committed May 5, 2023
1 parent 810a940 commit 8d468c5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,18 @@
"${workspaceFolder}/build/**/*.js"
]
},
{
"type": "node",
"request": "launch",
"name": "Launch API Server (serve-dev)",
"skipFiles": ["<node_internals>/**"],
"program": "${workspaceFolder}/src/main.ts",
"preLaunchTask": "tsc: build - tsconfig.json",
"outFiles": ["${workspaceFolder}/build/**/*.js"],
"runtimeExecutable": "yarn",
"runtimeArgs": ["run", "serve-dev"],
"console": "integratedTerminal"
},
{
"name": "Debug Jest Tests",
"type": "node",
Expand Down

0 comments on commit 8d468c5

Please sign in to comment.