From a43b9a0c3455d020f011b37a2aea58ce418bb153 Mon Sep 17 00:00:00 2001 From: Jason Johnston Date: Thu, 5 Mar 2026 09:36:47 -0500 Subject: [PATCH] Updated launch.json to use tsx --- .vscode/launch.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index 44d66392..61e6a52f 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -12,7 +12,8 @@ "skipFiles": [ "/**" ], - "program": "${workspaceFolder}/user-auth/graphtutorial/build/index.js", + "program": "${workspaceFolder}/user-auth/graphtutorial/index.ts", + "runtimeExecutable": "tsx", "cwd": "${workspaceFolder}/user-auth/graphtutorial", "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", @@ -31,7 +32,8 @@ "skipFiles": [ "/**" ], - "program": "${workspaceFolder}/app-auth/graphapponlytutorial/build/index.js", + "program": "${workspaceFolder}/app-auth/graphapponlytutorial/index.ts", + "runtimeExecutable": "tsx", "cwd": "${workspaceFolder}/app-auth/graphapponlytutorial", "console": "integratedTerminal", "internalConsoleOptions": "neverOpen",