Hopefully 'There are no stupid questions apply' rule is in full effect, and I realise language server development is a little niche.
I have a bunch of startup code in my vscode extension I occasionally need to walk/debug, with a manual attach task, I obviously miss that code and because the Extention Host spawns the LSP instance, I have to attach to it manually as per the docs, is there any way to get the lsp to either wait or automatically attach to the debugger.
autoAttachChildProcesses wasn't a win, and --inspect-brk half got me there but just got me web packed js, no good without a source map.
I can feel myself working around this and just wondered if anyone else had done something better.