【发布时间】:2021-09-26 04:46:21
【问题描述】:
我生成了在 VS Code 中创建颜色主题所需的文件。我使用 generator-code 节点包做到了这一点。
My file structure is as follows
当我运行 VS Code 的调试器时,我收到this warning,它阻止调试器运行。
这是我的launch.json文件的内容供参考:
{
"version": "0.2.0",
"configurations": [
{
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
}
]
}
如果您想知道我在运行调试器时会发生什么,here's the moment 在我遇到此问题的教程中。
编辑:好吧,我通过删除文件并重新开始以某种方式规避了这个问题。我不确定是什么导致了之前的问题。
【问题讨论】:
标签: debugging visual-studio-debugging vscode-debugger