fix debugging in vscode

This commit is contained in:
2026-08-24 11:05:21 +02:00
parent f18cd2c19d
commit ae98ffea79
3 changed files with 86 additions and 10 deletions
+18 -8
View File
@@ -4,12 +4,22 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "PowerShell: Launch Current File",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"args": []
}
{
"name": "PowerShell: Launch Current File",
"type": "PowerShell",
"request": "launch",
"script": "${file}",
"args": []
},
{
"name": "PowerShell: Debug ElixForms Schema Bulk Update",
"type": "PowerShell",
"request": "launch",
"script": "${workspaceFolder}/.agents/skills/elixforms-schema-bulk-updater/scripts/Invoke-ElixFormsSchemaBulkUpdate.ps1",
"args": [
"-RunWhenDotSourced"
],
"cwd": "${workspaceFolder}"
}
]
}
}