From f34012034ce5ae86c3b7fd7c902efdefed1062c4 Mon Sep 17 00:00:00 2001 From: Richie Foreman Date: Tue, 12 Aug 2025 14:53:11 -0400 Subject: chore(vscode): Add `Build & Launch CLI` option to vscode project (#6027) --- .vscode/launch.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json index 9b9d150d..97c9eba5 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -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": ["/**"], "cwd": "${workspaceFolder}", "console": "integratedTerminal", -- cgit v1.2.3