CCText/.vscode/launch.json
2024-04-11 23:25:09 +03:00

30 lines
739 B
JSON

{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Build",
"type": "PowerShell",
"request": "launch",
"script": "${workspaceFolder}/scripts/Build.ps1",
"args": []
},
{
"name": "Lint",
"type": "PowerShell",
"request": "launch",
"script": "${workspaceFolder}/scripts/RunLint.ps1",
"args": []
},
{
"name": "Setup",
"type": "PowerShell",
"request": "launch",
"script": "${workspaceFolder}/scripts/Setup.ps1",
"args": []
}
]
}