我一直在指https://code.visualstudio.com/docs/python/debugging#_justmycode 和 How to disable "just my code" setting in VSCode debugger?
尽管进行了多次尝试,但仍无法弄清楚放置位置 “ justMyCode”:launch.json中为false。我在任何地方尝试使用的编辑器都说“不允许属性justMyCode”
下面是我的launch.json的副本。有人可以告诉我该怎么办?
setTimeout( _ => this.updateUserData(result.user), 100)
答案 0 :(得分:2)
Try setting "justMyCode": false
仅凭VS Code调试器中的提示信息是不够的。如果要单步执行外部代码,还需要将"request": "launch"
更改为"request": "test"
。这是the Github issue where I found this answer。