Skip to content

Commit e42684b

Browse files
committed
Add vscode build task to make it easier to run build without having to look at gulp file.
1 parent fc5f6f7 commit e42684b

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.vscode/tasks.json

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "0.1.0",
5+
"command": "gulp",
6+
"isShellCommand": true,
7+
"args": [
8+
"--no-color"
9+
],
10+
"tasks": [
11+
{
12+
"taskName": "build",
13+
"args": [],
14+
"isBuildCommand": true,
15+
"isWatching": false,
16+
"problemMatcher": [
17+
"$lessCompile",
18+
"$tsc",
19+
"$jshint"
20+
]
21+
},
22+
{
23+
"taskName": "test",
24+
"args": [],
25+
"isTestCommand": true
26+
}
27+
]
28+
}

0 commit comments

Comments
 (0)