Skip to content

Instantly share code, notes, and snippets.

@bryancodesjs
Created June 6, 2025 21:46
Show Gist options
  • Save bryancodesjs/1b51b25a5c314eddcfe3df88b30a44e6 to your computer and use it in GitHub Desktop.
Save bryancodesjs/1b51b25a5c314eddcfe3df88b30a44e6 to your computer and use it in GitHub Desktop.
{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-node",
"request": "launch",
"name": "Debug Angular Frontend (ng serve)",
"runtimeExecutable": "npx",
"runtimeArgs": [
"cross-env",
"NODE_OPTIONS=--openssl-legacy-provider",
"ng",
"serve"
],
"cwd": "${workspaceFolder}/front",
"console": "integratedTerminal"
},
{
"type": "pwa-node",
"request": "launch",
"name": "Debug API (Node.js)",
"program": "${workspaceFolder}/api/app/index.js",
"cwd": "${workspaceFolder}/api",
"console": "integratedTerminal"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment