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 ae5efd9 commit ed74212Copy full SHA for ed74212
.vscode/tasks.json
@@ -0,0 +1,31 @@
1
+{
2
+ "version": "2.0.0",
3
+ "tasks": [
4
+ {
5
+ "label": "types",
6
+ "command": "pnpm",
7
+ "args": ["typescript", "--watch"],
8
+ "isBackground": true,
9
+ "group": {
10
+ "kind": "build"
11
+ },
12
+ "problemMatcher": ["$tsc-watch"]
13
14
15
+ "label": "types-next",
16
17
+ "args": ["types", "--watch"],
18
+ "options": {
19
+ "cwd": "${workspaceFolder}/packages/next"
20
21
22
23
24
25
+ "problemMatcher": {
26
+ "base": "$tsc-watch",
27
+ "fileLocation": ["relative", "${workspaceFolder}/packages/next"]
28
+ }
29
30
+ ]
31
+}
0 commit comments