From 84fc5cd5335474854527e9fa1e5c8b9c57dcd903 Mon Sep 17 00:00:00 2001 From: Neil Nair <65729206+Neil-N4@users.noreply.github.com> Date: Mon, 11 May 2026 14:21:42 -0700 Subject: [PATCH] Fix/vscode run current file ts (#22894) Co-authored-by: Spencer --- .vscode/launch.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 0294e27ed4..01f0ba59a9 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -43,9 +43,13 @@ { "type": "node", "request": "launch", - "name": "Launch Program", + "name": "CLI: Run Current File", + "runtimeExecutable": "node", + "runtimeArgs": ["--import", "tsx"], "skipFiles": ["/**"], "program": "${file}", + "cwd": "${workspaceFolder}", + "console": "integratedTerminal", "outFiles": ["${workspaceFolder}/**/*.js"] }, {