File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -47,4 +47,5 @@ scripts/*.js.map
4747coverage /
4848internal /
4949** /.DS_Store
50- .settings /
50+ .settings /*
51+ ! .settings /tasks.json
Original file line number Diff line number Diff line change 1+ // Available variables which can be used inside of strings.
2+ // ${workspaceRoot}: 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+ "version" : " 0.1.0" ,
10+ "command" : " jake" ,
11+ "isShellCommand" : true ,
12+ "showOutput" : " silent" ,
13+ "tasks" : [
14+ {
15+ "taskName" : " local" ,
16+ "isBuildCommand" : true ,
17+ "showOutput" : " silent" ,
18+ "problemMatcher" : [
19+ " $tsc"
20+ ]
21+ }
22+ ]
23+ }
You can’t perform that action at this time.
0 commit comments