Add build task for visual studio.

This commit is contained in:
kovacsv 2022-01-11 21:16:19 +01:00
parent 501b6783a0
commit 50ebf86944

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

@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build_website_dev",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"label": "npm: build_website_dev"
}
]
}