From df938d6ee833ded59f6d12528105e6165ed76a92 Mon Sep 17 00:00:00 2001 From: matt korwel Date: Mon, 16 Jun 2025 08:27:29 -0700 Subject: Preflight and integration npx (#1096) --- .vscode/launch.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to '.vscode/launch.json') diff --git a/.vscode/launch.json b/.vscode/launch.json index b9cd87e3..b9967d8c 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,6 +4,24 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "type": "node", + "request": "launch", + "name": "Launch CLI", + "runtimeExecutable": "npm", + "runtimeArgs": ["run", "start"], + "skipFiles": ["/**"], + "cwd": "${workspaceFolder}" + }, + { + "type": "node", + "request": "launch", + "name": "Launch E2E", + "runtimeExecutable": "npm", + "runtimeArgs": ["run", "test:e2e", "read_many_files"], + "skipFiles": ["/**"], + "cwd": "${workspaceFolder}" + }, { "name": "Attach", "port": 9229, -- cgit v1.2.3