12345678910111213141516171819202122232425262728293031323334 |
- {
- "version": "0.1.0",
- "command": "gulp",
- "isShellCommand": true,
- "args": [
- "--no-color"
- ],
- "tasks": [
- // {
- // "taskName": "build",
- // "args": [],
- // "isBuildCommand": true,
- // "isWatching": false,
- // "problemMatcher": [
- // "$lessCompile",
- // "$tsc",
- // "$jshint"
- // ]
- // },
-
- //default task is build task
- {
- "taskName": "default",
- "args" :[],
- "isBuildCommand": true,
- "isWatching": false,
- "problemMatcher": [
- "$lessCompile",
- "$tsc",
- "$jshint"
- ]
- }
- ]
- }
|