We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c75855d commit 2d3c7d0Copy full SHA for 2d3c7d0
.vscode/tasks.json
@@ -2,13 +2,14 @@
2
"version": "2.0.0",
3
"tasks": [
4
{
5
+ "label": "npm: lint",
6
"type": "npm",
7
"script": "lint",
- "problemMatcher": "$eslint-stylish",
8
- "label": "npm: lint",
9
- "detail": "eslint src/index.ts"
+ "detail": "eslint src/index.ts",
+ "problemMatcher": "$eslint-stylish"
10
},
11
12
+ "label": "tsc: watch - tsconfig.build.json",
13
"type": "typescript",
14
"tsconfig": "tsconfig.build.json",
15
"option": "watch",
@@ -19,7 +20,9 @@
19
20
"kind": "build",
21
"isDefault": true
22
- "label": "tsc: watch - tsconfig.build.json"
23
+ "runOptions": {
24
+ "runOn": "folderOpen"
25
+ }
26
}
27
]
28
0 commit comments