Skip to content

Instantly share code, notes, and snippets.

@iShawnWang
Last active May 8, 2023 05:55
Show Gist options
  • Save iShawnWang/95f9d249936efb23d5d9e6ec169b9e61 to your computer and use it in GitHub Desktop.
Save iShawnWang/95f9d249936efb23d5d9e6ec169b9e61 to your computer and use it in GitHub Desktop.
VSCode + tsx + Auto Attach Debugger : https://github.com/esbuild-kit/tsx
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Run current script",
"runtimeExecutable": "npx",
"runtimeArgs": ["tsx"],
"program": "${file}",
"skipFiles": ["<node_internals>/**"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment