Skip to content

Instantly share code, notes, and snippets.

@palanisamym14
Created December 29, 2021 09:33
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 palanisamym14/bf29d8db1216baef7a3056e383eb0a3b to your computer and use it in GitHub Desktop.
Save palanisamym14/bf29d8db1216baef7a3056e383eb0a3b to your computer and use it in GitHub Desktop.
nestjs launch.json
{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Debug Nest Framework",
"args": [
"${workspaceFolder}/src/main.ts"
],
"runtimeArgs": [
"--nolazy",
"-r",
"ts-node/register",
"-r",
"tsconfig-paths/register"
],
"sourceMaps": true,
"envFile": "${workspaceFolder}/.env",
"cwd": "${workspaceRoot}",
"console": "integratedTerminal",
"protocol": "inspector",
"resolveSourceMapLocations": [
"${workspaceFolder}/**",
"!**/node_modules/**"
],
"skipFiles": [
"<node_internals>/**"
],
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment