Skip to content

Commit a96a549

Browse files
authored
Merge pull request #347 from JimiC/fix_task
Fix compile task
2 parents 1ee7a2b + 4b15f82 commit a96a549

File tree

1 file changed

+12
-3
lines changed

1 file changed

+12
-3
lines changed

.vscode/tasks.json

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,22 @@
44
"version": "2.0.0",
55
"tasks": [
66
{
7-
"type": "gulp",
8-
"task": "compile",
97
"label": "compile",
108
"group": {
119
"kind": "build",
1210
"isDefault": true
13-
}
11+
},
12+
"command": "npm",
13+
"presentation": {
14+
"reveal": "silent"
15+
},
16+
"args": [
17+
"run",
18+
"compile",
19+
"--loglevel",
20+
"silent"
21+
],
22+
"problemMatcher": [],
1423
}
1524
]
1625
}

0 commit comments

Comments
 (0)