mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-06-22 17:03:36 +02:00
19 lines
No EOL
531 B
JSON
19 lines
No EOL
531 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"
|
|
}
|
|
]
|
|
} |