Created
June 6, 2025 21:46
-
-
Save bryancodesjs/1b51b25a5c314eddcfe3df88b30a44e6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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