Skip to content

Instantly share code, notes, and snippets.

@webhacking
Created April 19, 2020 12:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save webhacking/e5fdad11f3a6c9590c4005552e85263c to your computer and use it in GitHub Desktop.
Save webhacking/e5fdad11f3a6c9590c4005552e85263c to your computer and use it in GitHub Desktop.
For nest
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Nest debug by a@hax0r.info",
"type": "node",
"request": "launch",
"args": [
"src/main.ts"
],
"runtimeArgs": [
"-r",
"ts-node/register",
"-r",
"tsconfig-paths/register"
],
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart",
"env": {
"NODE_ENV": "local",
"NODE_PORT": "9000"
},
"sourceMaps": true,
"console": "internalConsole",
"outputCapture": "std"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment