Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nikolovlazar/7b894bc5a65c1b64afb5879600872af9 to your computer and use it in GitHub Desktop.
Save nikolovlazar/7b894bc5a65c1b64afb5879600872af9 to your computer and use it in GitHub Desktop.
monorepo vscode launch settings
{
"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