Dynavera/.vscode/launch.json

24 lines
562 B
JSON
Raw Normal View History

{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
2025-11-10 15:07:53 +00:00
"name": "Debug api with Nx",
"runtimeExecutable": "npx",
2025-11-10 15:07:53 +00:00
"runtimeArgs": ["nx", "serve", "api"],
"env": {
"NODE_OPTIONS": "--inspect=9229"
},
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": ["<node_internals>/**"],
"sourceMaps": true,
"outFiles": [
2025-11-10 15:07:53 +00:00
"${workspaceFolder}/apps/api/dist/**/*.(m|c|)js",
"!**/node_modules/**"
]
}
]
}