pojokcodeid.nvim-lazy/snippets/laravel-blade/.vscode/launch.json
2023-03-03 07:09:50 +07:00

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"
}
]
}