Skip to content

Commit 2d30bec

Browse files
authored
Task 2.0.0
1 parent 10dc625 commit 2d30bec

File tree

1 file changed

+8
-27
lines changed

1 file changed

+8
-27
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,11 @@
1-
// Available variables which can be used inside of strings.
2-
// ${workspaceFolder}: the root folder of the team
3-
// ${file}: the current opened file
4-
// ${fileBasename}: the current opened file's basename
5-
// ${fileDirname}: the current opened file's dirname
6-
// ${fileExtname}: the current opened file's extension
7-
// ${cwd}: the current working directory of the spawned process
8-
9-
// A task runner that calls a custom npm script that compiles the extension.
101
{
11-
"version": "0.1.0",
12-
13-
// we want to run npm
2+
"version": "2.0.0",
143
"command": "npm",
15-
16-
// the command is a shell script
17-
"isShellCommand": true,
18-
19-
// show the output window only if unrecognized errors occur.
20-
"showOutput": "silent",
21-
22-
// we run the custom script "compile" as defined in package.json
23-
"args": ["run", "compile", "--loglevel", "silent"],
24-
25-
// The tsc compiler is started in watching mode
26-
"isWatching": true,
27-
28-
// use the standard tsc in watch mode problem matcher to find compile problems in the output.
4+
"type": "shell",
5+
"presentation": {
6+
"reveal": "silent"
7+
},
8+
"args": ["run", "compile"],
9+
"isBackground": true,
2910
"problemMatcher": "$tsc-watch"
30-
}
11+
}

0 commit comments

Comments
 (0)