We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f32f84 commit 4534522Copy full SHA for 4534522
1 file changed
.vscode/tasks.json
@@ -0,0 +1,32 @@
1
+{
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "type": "shell",
6
+ "command": "yarn test:lint",
7
+ "problemMatcher": ["$eslint-stylish"],
8
+ "group": "test",
9
+ "label": "Lint"
10
+ },
11
12
+ "type": "typescript",
13
+ "label": "Typescript example",
14
+ "tsconfig": "packages/example/tsconfig.json",
15
+ "problemMatcher": ["$tsc"],
16
+ "group": {
17
+ "kind": "build",
18
+ "isDefault": true
19
+ }
20
21
22
23
+ "label": "Typescript lib",
24
+ "tsconfig": "packages/lib/tsconfig.json",
25
26
27
28
29
30
31
+ ]
32
+}
0 commit comments