Skip to content

Commit

Permalink
vscode upgrade
Browse files Browse the repository at this point in the history
  • Loading branch information
Workshop2 committed Jul 31, 2021
1 parent c0567ed commit c62d03f
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 5 deletions.
24 changes: 19 additions & 5 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,24 @@
{
// 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": "tsc",
"isShellCommand": true,
"args": ["-p", "."],
"showOutput": "silent",
"problemMatcher": "$tsc"
"args": [
"-p",
"."
],
"problemMatcher": "$tsc",
"tasks": [
{
"label": "tsc",
"type": "shell",
"command": "tsc",
"args": [
"-p",
"."
],
"problemMatcher": "$tsc",
"group": "build"
}
]
}
10 changes: 10 additions & 0 deletions .vscode/tasks.json.old
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "0.1.0",
"command": "tsc",
"isShellCommand": true,
"args": ["-p", "."],
"showOutput": "silent",
"problemMatcher": "$tsc"
}

0 comments on commit c62d03f

Please sign in to comment.