24 lines
584 B
JSON
24 lines
584 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Debug @spairtech/api with Nx",
|
|
"runtimeExecutable": "npx",
|
|
"runtimeArgs": ["nx", "serve", "@spairtech/api"],
|
|
"env": {
|
|
"NODE_OPTIONS": "--inspect=9229"
|
|
},
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"skipFiles": ["<node_internals>/**"],
|
|
"sourceMaps": true,
|
|
"outFiles": [
|
|
"${workspaceFolder}/apps/api/dist/**/*.(m|c|)js",
|
|
"!**/node_modules/**"
|
|
]
|
|
}
|
|
]
|
|
}
|