Skip to content

Commit

Permalink
Upgrade task.json to the new version (#412)
Browse files Browse the repository at this point in the history
  • Loading branch information
KonstantinTyukalov authored Jul 7, 2022
1 parent 81b19ea commit 75f28d7
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"version": "2.0.0",
"command": "npm",
"isShellCommand": true,
"showOutput": "always",
"suppressTaskName": true,
"tasks": [
{
"taskName": "build",
"args": ["run", "build"]
"label": "build",
"type": "shell",
"args": [
"run",
"build"
],
"problemMatcher": [],
"group": {
"_id": "build",
"isDefault": false
}
}
]
}
}

0 comments on commit 75f28d7

Please sign in to comment.