I have a script inside a node app that I am running like this:
nodemon({
script: this.settings.serverScriptPath,
ext: 'ts tsx json',
verbose: this.debug,
stdout: false
});
I am trying to debug using the debugger
directive,
However devtools does not stop there, even if I set the --inspect-brk
directive
It's possible to inspect and set a debugger
directive into it? Or to inspect it in any way?