Files
vscode-extension-samples/quickinput-sample/.vscode/launch.json

23 lines
744 B
JSON
Raw Permalink Normal View History

2018-06-15 16:47:11 +02:00
// A launch configuration that compiles the extension and then opens it inside a new window
// 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": [
{
2019-09-10 15:05:39 -07:00
"name": "Run Extension",
2018-06-15 16:47:11 +02:00
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: watch"
}
]
}