Created
July 28, 2025 17:12
-
-
Save nikolovlazar/7b894bc5a65c1b64afb5879600872af9 to your computer and use it in GitHub Desktop.
monorepo vscode launch settings
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": [ | |
{ | |
"name": "Debug Main Platform Backend", | |
"type": "node", | |
"request": "launch", | |
"runtimeExecutable": "pnpm", | |
"runtimeArgs": ["dev"], | |
"skipFiles": ["<node_internals>/**"], | |
"console": "integratedTerminal", | |
"cwd": "${workspaceFolder}/apps/main" | |
}, | |
{ | |
"name": "Debug Instructors Portal Backend", | |
"type": "node", | |
"request": "launch", | |
"runtimeExecutable": "pnpm", | |
"runtimeArgs": ["dev"], | |
"skipFiles": ["<node_internals>/**"], | |
"console": "integratedTerminal", | |
"cwd": "${workspaceFolder}/apps/instructors" | |
}, | |
{ | |
"name": "Launch Chrome", | |
"type": "chrome", | |
"request": "launch", | |
"url": "http://localhost:3000", | |
"webRoot": "${workspaceFolder}/apps/main", | |
"userDataDir": false, | |
"skipFiles": ["<node_internals>/**"] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment