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

16 lines
412 B
JSON
Raw Permalink Normal View History

// A launch configuration that compiles the extension and then opens it inside a new window
{
2018-11-08 10:13:29 +01:00
"version": "0.2.0",
"configurations": [
{
2018-11-08 10:13:29 +01:00
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
2018-11-08 10:13:29 +01:00
"args": ["--extensionDevelopmentPath=${workspaceRoot}"],
"outFiles": ["${workspaceFolder}/out/**/*.js"],
"preLaunchTask": "npm: watch"
}
]
}