Open
Description
:NodeInspectRun
Error detected while processing function nodeinspect#NodeInspectRun[13]..<SNR>203_NodeInspectStart:
line 75:
E716: Key not present in Dictionary: watches
E116: Invalid arguments for function keys
E15: Invalid expression: keys(s:session["watches"])
:NodeInspectToggleBreakpoint
Error detected while processing function OnNodeNvimMessage[1]..OnNodeMessage[21]..<SNR>198_breakpointResolved[23]..<SNR>198_addBrkptSign:
line 2:
E155: Unknown sign: visbkpt
While I'm getting the errors and the signs aren't showing up on the vim window, it looks like the breakpoint is still set, and I can use the terminal buffer to explore variables through repl.
Wondering if this issue occurs because of working with typescript files instead of js ones.
Using nodemon with the following nodemon.json
config:
{
"watch": ["src"],
"ext": "ts",
"ignore": ["src/**/*.spec.ts"],
"exec": "node --inspect=0.0.0.0:9229 --require ts-node/register ./src/index.ts",
"verbose": true
}