Skip to content

Instantly share code, notes, and snippets.

@gitSambhal
Last active December 15, 2023 04:18
Show Gist options
  • Save gitSambhal/caa1e92f572df760a7edfd202babe40e to your computer and use it in GitHub Desktop.
Save gitSambhal/caa1e92f572df760a7edfd202babe40e to your computer and use it in GitHub Desktop.
Debug Typescript Nodejs App in Vscode using ts-node
{
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debug - App",
"runtimeArgs": ["-r", "ts-node/register"],
"args": ["${workspaceFolder}/src/index.ts"]
}
]
}
@gitSambhal
Copy link
Author

Save the file in the .vscode/launch.json location in your typescrip project and then run it from the Run and Debug section.
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment