Skip to content

Instantly share code, notes, and snippets.

@barisbll
Created September 4, 2022 12:31
Show Gist options
  • Save barisbll/736a42a12c0408732b4a6d99aeb405b2 to your computer and use it in GitHub Desktop.
Save barisbll/736a42a12c0408732b4a6d99aeb405b2 to your computer and use it in GitHub Desktop.
ts-debug/launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"port": 9229,
"name": "Attach to port",
"sourceMaps": true,
"skipFiles": ["<node_internals>/**"],
"localRoot": "${workspaceFolder}",
"outFiles": ["${workspaceFolder}/dist"]
},
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment