Skip to content

Instantly share code, notes, and snippets.

@kudorgyozo
Created November 18, 2025 11:05
Show Gist options
  • Select an option

  • Save kudorgyozo/7bb2307fc306b4200f3953ca49f02f05 to your computer and use it in GitHub Desktop.

Select an option

Save kudorgyozo/7bb2307fc306b4200f3953ca49f02f05 to your computer and use it in GitHub Desktop.
pnpm tsx vscode debug
{
"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