2024-06-25 19:11:43 +00:00
|
|
|
{
|
|
|
|
"version": "2.0.0",
|
|
|
|
"tasks": [
|
|
|
|
{
|
|
|
|
"label": "Install All Recommended Extensions",
|
|
|
|
"type": "shell",
|
|
|
|
"windows": {
|
|
|
|
"command": "foreach ($ext in (Get-Content -Raw .vscode/extensions.json | ConvertFrom-Json).recommendations) { Write-Host Installing $ext; code --install-extension $ext; }"
|
|
|
|
},
|
|
|
|
"linux": {
|
|
|
|
"command": "cat .vscode/extensions.json | jq .recommendations[] | xargs -n 1 code . --install-extension"
|
|
|
|
},
|
|
|
|
"runOptions": {
|
|
|
|
"runOn": "folderOpen"
|
|
|
|
},
|
|
|
|
"presentation": {
|
|
|
|
"reveal": "silent"
|
|
|
|
},
|
2024-06-26 21:04:25 +00:00
|
|
|
"problemMatcher": []
|
|
|
|
}
|
2024-06-25 19:11:43 +00:00
|
|
|
]
|
2024-06-26 21:04:25 +00:00
|
|
|
}
|