Proposal: Allow TS Server to be spawned with --inspect-brk by andrewbranch · Pull Request #98340 · microsoft/vscode
I’ve found this to be very useful while developing TS Server features, as a lot of work happens immediately after VS Code spawns TS Server, which doesn’t allow enough time to attach a debugger unless the process pauses. I plan on also updating my vscode-tsserver-debug extension to leverage this if merged.
While this change would make my work (and likely the work of others working on TS Server) much easier, it should be considered with some caution, since it means that TS Server cannot start in the presence of a TSS_DEBUG_BRK environment variable until a debugger attaches and unpauses its execution. If by some very strange means (e.g., malicious extension code?) a user unknowingly ended up with this environment variable set, JS/TS language service operations wouldn’t work and it could be difficult to diagnose. So I’m open to feedback on other ways to accomplish this, depending on the level of concern from the team.
@mjbvz for thoughts, whenever you have a minute.