summaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authormatt korwel <[email protected]>2025-06-16 08:27:29 -0700
committerGitHub <[email protected]>2025-06-16 15:27:29 +0000
commitdf938d6ee833ded59f6d12528105e6165ed76a92 (patch)
tree712b82037a378b74f5fd68ed5b06f1aae56a88c9 /.vscode
parenta600588c200f85e9f3bfe46ef7f836387e7349e5 (diff)
Preflight and integration npx (#1096)
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/launch.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/.vscode/launch.json b/.vscode/launch.json
index b9cd87e3..b9967d8c 100644
--- a/.vscode/launch.json
+++ b/.vscode/launch.json
@@ -5,6 +5,24 @@
"version": "0.2.0",
"configurations": [
{
+ "type": "node",
+ "request": "launch",
+ "name": "Launch CLI",
+ "runtimeExecutable": "npm",
+ "runtimeArgs": ["run", "start"],
+ "skipFiles": ["<node_internals>/**"],
+ "cwd": "${workspaceFolder}"
+ },
+ {
+ "type": "node",
+ "request": "launch",
+ "name": "Launch E2E",
+ "runtimeExecutable": "npm",
+ "runtimeArgs": ["run", "test:e2e", "read_many_files"],
+ "skipFiles": ["<node_internals>/**"],
+ "cwd": "${workspaceFolder}"
+ },
+ {
"name": "Attach",
"port": 9229,
"request": "attach",