1
0
Fork 0

feat(build): add vscode task to compile

This commit is contained in:
ssube 2020-08-11 19:13:59 -05:00
parent fbd294d2c7
commit 622617f765
Signed by: ssube
GPG Key ID: 3EED7B957D362AF1
1 changed files with 15 additions and 0 deletions

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

@ -0,0 +1,15 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "build",
"type": "shell",
"command": "make ci",
"problemMatcher": [
"$tsc"
]
}
]
}