Files
vscode-extension-samples/notebook-extend-markdown-renderer-sample/.vscode/launch.json
Matt Bierner 30e22b38ce Add extended markdown notebook renderer sample
This demonstrates how one notebook renderer can extend another one
2022-06-27 17:06:11 -07:00

20 lines
532 B
JSON

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