Skip to content

Commit bce53db

Browse files
committed
VSCode stuff
1 parent bc1a2f3 commit bce53db

File tree

1 file changed

+30
-26
lines changed

1 file changed

+30
-26
lines changed

.vscode/tasks.json

Lines changed: 30 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,32 @@
11
{
2-
"version": "2.0.0",
3-
"tasks": [
4-
{
5-
"label": "npm: lint",
6-
"type": "npm",
7-
"script": "lint",
8-
"detail": "eslint src/index.ts",
9-
"problemMatcher": "$eslint-stylish"
10-
},
11-
{
12-
"label": "tsc: watch - tsconfig.build.json",
13-
"type": "typescript",
14-
"tsconfig": "tsconfig.build.json",
15-
"option": "watch",
16-
"problemMatcher": [
17-
"$tsc-watch"
18-
],
19-
"group": {
20-
"kind": "build",
21-
"isDefault": true
22-
},
23-
"runOptions": {
24-
"runOn": "folderOpen"
25-
}
26-
}
27-
]
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "npm: lint",
6+
"type": "npm",
7+
"script": "lint",
8+
"detail": "eslint src/index.ts",
9+
"problemMatcher": "$eslint-stylish"
10+
},
11+
{
12+
"label": "tsc: watch - tsconfig.build.json",
13+
"group": {
14+
"kind": "build",
15+
"isDefault": true
16+
},
17+
"type": "typescript",
18+
"tsconfig": "tsconfig.build.json",
19+
"option": "watch",
20+
"problemMatcher": [
21+
"$tsc-watch"
22+
],
23+
"presentation": {
24+
"echo": true,
25+
"reveal": "silent",
26+
},
27+
"runOptions": {
28+
"runOn": "folderOpen"
29+
}
30+
}
31+
]
2832
}

0 commit comments

Comments
 (0)