pojokcodeid.nvim-lazy/snippets/laravel-blade/.vscode/launch.json

19 lines
531 B
JSON
Raw Normal View History

2023-03-03 07:09:50 +07:00
// 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"
}
]
2023-01-15 00:19:37 +07:00
}