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

20 lines
564 B
JSON
Raw Permalink Normal View History

2018-09-19 17:54:55 +02:00
// A launch configuration that compiles the extension and then opens it inside a new window
{
2019-04-16 09:59:21 -07:00
"version": "0.2.0",
2018-09-19 17:54:55 +02:00
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
2018-09-20 13:03:06 +02:00
"--extensionDevelopmentPath=${workspaceFolder}"
2018-09-19 17:54:55 +02:00
],
"outFiles": [
2018-09-20 13:03:06 +02:00
"${workspaceFolder}/dist/**/*.js"
2018-09-19 17:54:55 +02:00
],
"preLaunchTask": "npm: webpack"
}
]
}