chore(vscode): Add Build & Launch CLI option to vscode project (#6027)

This commit is contained in:
Richie Foreman
2025-08-12 14:53:11 -04:00
committed by GitHub
parent 4ecfb478b0
commit f34012034c
2 changed files with 3 additions and 2 deletions

4
.vscode/launch.json vendored
View File

@@ -7,9 +7,9 @@
{
"type": "node",
"request": "launch",
"name": "Launch CLI",
"name": "Build & Launch CLI",
"runtimeExecutable": "npm",
"runtimeArgs": ["run", "start"],
"runtimeArgs": ["run", "build-and-start"],
"skipFiles": ["<node_internals>/**"],
"cwd": "${workspaceFolder}",
"console": "integratedTerminal",