Created
November 18, 2025 11:05
-
-
Save kudorgyozo/7bb2307fc306b4200f3953ca49f02f05 to your computer and use it in GitHub Desktop.
pnpm tsx vscode debug
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "type": "node", | |
| "request": "launch", | |
| "name": "Debug current TypeScript file (tsx + pnpm)", | |
| "skipFiles": [ | |
| "<node_internals>/**" | |
| ], | |
| "program": "${workspaceFolder}/${relativeFile}", | |
| "runtimeExecutable": "pnpm", | |
| "runtimeArgs": [ | |
| "exec", | |
| "tsx" | |
| ], | |
| "cwd": "${workspaceFolder}", | |
| "console": "integratedTerminal", | |
| //"internalConsoleOptions": "neverOpen" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment