mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-24 01:38:47 +02:00
19 lines
549 B
JSON
19 lines
549 B
JSON
|
// A launch configuration that launches the extension inside a new window
|
||
|
{
|
||
|
"version": "1.0.0",
|
||
|
"configurations": [
|
||
|
{
|
||
|
"name": "Launch Extension",
|
||
|
"type": "extensionHost",
|
||
|
"request": "launch",
|
||
|
"runtimeExecutable": "${execPath}",
|
||
|
"args": [
|
||
|
"--extensionDevelopmentPath=${workspaceRoot}"
|
||
|
],
|
||
|
"outFiles": [
|
||
|
"${workspaceRoot}/out/**/*.js"
|
||
|
],
|
||
|
"preLaunchTask": "npm"
|
||
|
}
|
||
|
]
|
||
|
}
|