chore(vscode): add tasks.json

This commit is contained in:
AAGaming
2022-08-26 01:11:50 -04:00
parent 43e9417303
commit ef147c6715

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

@@ -0,0 +1,15 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"problemMatcher": [
"$tsc-watch"
],
"label": "npm: dev",
"detail": "tsc -b -w",
"isBackground": true
}
]
}