I'm pretty new to vscode (used atom before). I'm actually coding some screeps (js mmo coding game) code, and I'd like to run it in the debugger.
The problem is that screeps has some proper in game objects like Memory, or Game that are not recognized by vscode. So I installed an autocomplete module (npm install @types/screeps), but of course, there are still some issues while debugging.
Ideally, I'd like to make the debugger skip lines I don't want it to see with a tag (like a breakpoint). Otherwise, I'll also be happy to just have the debugger translate things like Game.creeps[creepName].moveTo to (()=>()) automatically.