Skip to content

Instantly share code, notes, and snippets.

@CuongNgMan
Created November 9, 2021 14:47
Show Gist options
  • Save CuongNgMan/920aeeb07256cf81e9b4cb0e82a67938 to your computer and use it in GitHub Desktop.
Save CuongNgMan/920aeeb07256cf81e9b4cb0e82a67938 to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"name": "Debug NodeJS server",
"type": "node",
"request": "launch",
"runtimeExecutable": "node",
"runtimeArgs": ["--nolazy", "-r", "ts-node/register/transpile-only"],
"envFile": "${workspaceFolder}/.env",
"args": ["index.ts"],
"cwd": "${workspaceRoot}/server",
"internalConsoleOptions": "openOnSessionStart",
"skipFiles": ["<node_internals>/**", "node_modules/**"]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment