Skip to content

Instantly share code, notes, and snippets.

@arthurariza
Created December 25, 2021 17:35
Show Gist options
  • Save arthurariza/3de95c4adef26087068fd8512ac4a2bc to your computer and use it in GitHub Desktop.
Save arthurariza/3de95c4adef26087068fd8512ac4a2bc to your computer and use it in GitHub Desktop.
NodeTS Debbug
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}
{
"scripts": {
"dev": "ts-node-dev --inspect --transpile-only --ignore-watch node_modules --respawn src/server.ts"
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment