pojokcodeid.nvim-lazy/my-snippets/laravel-blade/.vscode/launch.json
asep komarudin 1ab37bd478 update
2023-01-15 00:19:37 +07:00

19 lines
No EOL
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"
}
]
}