Files
vscode-extension-samples/webpack-sample/.vscode/launch.json
Johannes Rieken f3e2a46288 better source maps
2018-09-20 13:03:06 +02:00

20 lines
564 B
JSON

// A launch configuration that compiles the extension and then opens it inside a new window
{
"version": "0.1.0",
"configurations": [
{
"name": "Launch Extension",
"type": "extensionHost",
"request": "launch",
"runtimeExecutable": "${execPath}",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "npm: webpack"
}
]
}