Files
vscode-extension-samples/notebook-renderer-sample/.vscode/launch.json

22 lines
638 B
JSON
Raw Permalink Normal View History

2021-08-01 21:30:26 -07:00
// 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": [
2022-11-29 20:58:49 +01:00
"--extensionDevelopmentPath=${workspaceFolder}",
"--folder-uri=${workspaceFolder}/sample/",
"${workspaceFolder}/sample/sample.ipynb"
],
"outFiles": [
2022-11-29 20:58:49 +01:00
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: webpack"
}
2021-08-01 21:30:26 -07:00
]
}