Add default build task for VS Code (#639)

This commit is contained in:
Miguel Solorio 2025-05-31 11:09:25 -07:00 committed by GitHub
parent 1a84d8f674
commit c350fbef7f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 16 additions and 0 deletions

16
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"label": "npm: build",
"detail": "scripts/build.sh"
}
]
}