Visual Studio Code does not Debug Extension to simulate -
i start simple snippet extension , when debug vscode created folder ./vsce
configuration file automatically.
when run f5 in extension folder, see message bellow. created file configuration, why message?
this file wrong .vscode/launch.json
, necessary add git folder, change this:
// launch configuration compiles extension , opens inside new window { "version": "0.1.0", "configurations": [ { "name": "launch extension", "type": "extensionhost", "request": "launch", "runtimeexecutable": "${execpath}", "args": ["--extensiondevelopmentpath=${workspaceroot}" ] } ] }
Comments
Post a Comment