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?

visual studio code

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

Popular posts from this blog

amazon web services - S3 Pre-signed POST validate file type? -

c# - Check Keyboard Input Winforms -