В package.json после 1000 и 1 попытки имею:
"debug": "nodemon --watch 'src/**/*.ts' --exec node --inspect-brk -r ts-node/register src/server.ts",
"testdebug": "node --inspect-brk node_modules/.bin/jest --watchAll --runInBand"
launch.json:
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "debug",
"runtimeExecutable": "yarn",
"console": "integratedTerminal",
"internalConsoleOptions": "openOnSessionStart",
"runtimeArgs": [
"debug"
],
"port": 9229
},
{
"type": "node",
"request": "launch",
"name": "test debug",
"runtimeExecutable": "yarn",
"console": "integratedTerminal",
"restart": true,
"runtimeArgs": [
"testdebug"
],
"port": 9229
}
]
}
Проблема в том, что после нажатия "стоп" в дебагере консоль не закрывается. Приложение так и остается висеть запущенным.
Поделитесь, пожалуйста, правильным конфигом или объясните что не так в моем