Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit a1406bf

Browse files
committed
Merge pull request microsoft#3156 from Microsoft/codeSettings
Adds tasks.json to easily use VSCode with TypeScript sources
2 parents dea8e3e + 9fc1d3c commit a1406bf

File tree

2 files changed

+25
-1
lines changed

2 files changed

+25
-1
lines changed

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,5 @@ scripts/*.js.map
4747
coverage/
4848
internal/
4949
**/.DS_Store
50-
.settings/
50+
.settings/*
51+
!.settings/tasks.json

.settings/tasks.json

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
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+
}

0 commit comments

Comments
 (0)