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

22 lines
739 B
JSON
Raw Permalink Normal View History

// A launch configuration that compiles the extension and then opens it inside a new window
2018-04-09 06:30:41 -07:00
// 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
{
2018-04-09 06:30:41 -07:00
"version": "0.2.0",
"configurations": [
{
2018-04-09 06:30:41 -07:00
"name": "Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
2018-04-09 06:30:41 -07:00
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: watch"
}
]
2018-04-09 06:30:41 -07:00
}