|
2 | 2 | "version": "2.0.0", |
3 | 3 | "tasks": [ |
4 | 4 | { |
5 | | - "label": "tsc-watch: vscode-container-client", |
6 | | - "type": "typescript", |
7 | | - "tsconfig": "packages/vscode-container-client/tsconfig.json", |
8 | | - "option": "watch", |
9 | | - "problemMatcher": [ |
10 | | - "$tsc-watch" |
11 | | - ], |
| 5 | + "label": "Build+Watch: vscode-processutils", |
| 6 | + "type": "npm", |
| 7 | + "script": "build:esm -- --watch", |
| 8 | + "path": "packages/vscode-processutils", |
12 | 9 | "group": { |
13 | | - "kind": "build", |
14 | | - "isDefault": true |
| 10 | + "kind": "build" |
15 | 11 | }, |
| 12 | + "isBackground": true, |
16 | 13 | "presentation": { |
17 | | - "reveal": "never" |
| 14 | + "revealProblems": "onProblem" |
18 | 15 | }, |
19 | | - "isBackground": true |
| 16 | + "problemMatcher": "$tsc-watch", |
20 | 17 | }, |
21 | 18 | { |
22 | | - "label": "tsc-watch: vscode-processutils", |
23 | | - "type": "typescript", |
24 | | - "tsconfig": "packages/vscode-processutils/tsconfig.json", |
25 | | - "option": "watch", |
26 | | - "problemMatcher": [ |
27 | | - "$tsc-watch" |
28 | | - ], |
| 19 | + "label": "Build+Watch+CJS: vscode-processutils", |
| 20 | + "type": "npm", |
| 21 | + "script": "build:cjs -- --watch", |
| 22 | + "path": "packages/vscode-processutils", |
29 | 23 | "group": { |
30 | 24 | "kind": "build" |
31 | 25 | }, |
| 26 | + "isBackground": true, |
| 27 | + "presentation": { |
| 28 | + "revealProblems": "onProblem" |
| 29 | + }, |
| 30 | + "problemMatcher": "$tsc-watch", |
| 31 | + }, |
| 32 | + { |
| 33 | + "label": "Build+Watch: vscode-container-client", |
| 34 | + "type": "npm", |
| 35 | + "script": "build:esm -- --watch", |
| 36 | + "path": "packages/vscode-container-client", |
| 37 | + "group": { |
| 38 | + "kind": "build", |
| 39 | + "isDefault": true |
| 40 | + }, |
| 41 | + "isBackground": true, |
32 | 42 | "presentation": { |
33 | | - "reveal": "never" |
| 43 | + "revealProblems": "onProblem" |
34 | 44 | }, |
35 | | - "isBackground": true |
| 45 | + "problemMatcher": "$tsc-watch", |
| 46 | + "dependsOn": [ |
| 47 | + "Build+Watch: vscode-processutils", |
| 48 | + ] |
36 | 49 | }, |
37 | 50 | { |
38 | | - "label": "tsc-watch: vscode-docker-registries", |
39 | | - "type": "typescript", |
40 | | - "tsconfig": "packages/vscode-docker-registries/tsconfig.json", |
41 | | - "option": "watch", |
42 | | - "problemMatcher": [ |
43 | | - "$tsc-watch" |
44 | | - ], |
| 51 | + "label": "Build+Watch: vscode-docker-registries", |
| 52 | + "type": "npm", |
| 53 | + "script": "build:esm -- --watch", |
| 54 | + "path": "packages/vscode-docker-registries", |
45 | 55 | "group": { |
46 | 56 | "kind": "build" |
47 | 57 | }, |
| 58 | + "isBackground": true, |
48 | 59 | "presentation": { |
49 | | - "reveal": "never" |
| 60 | + "revealProblems": "onProblem" |
50 | 61 | }, |
51 | | - "isBackground": true |
| 62 | + "problemMatcher": "$tsc-watch", |
52 | 63 | }, |
53 | 64 | ] |
54 | 65 | } |
0 commit comments