Skip to content

Instantly share code, notes, and snippets.

@PEZ
Created March 7, 2018 19:46
Show Gist options
  • Select an option

  • Save PEZ/4c2266ba605b7cea7234806f0d91b791 to your computer and use it in GitHub Desktop.

Select an option

Save PEZ/4c2266ba605b7cea7234806f0d91b791 to your computer and use it in GitHub Desktop.
VS Code extension development launch config
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "${workspaceRoot}/out/src",
"preLaunchTask": "npm"
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment