|
1 | 1 | // See https://go.microsoft.com/fwlink/?LinkId=733558 |
2 | 2 | // for the documentation about the tasks.json format |
3 | 3 | { |
4 | | - "version": "2.0.0", |
5 | | - "tasks": [ |
6 | | - { |
7 | | - "label": "extension-watch", |
8 | | - "type": "npm", |
9 | | - "script": "watch", |
10 | | - "problemMatcher": "$ts-webpack-watch", |
11 | | - "isBackground": true, |
12 | | - "presentation": { |
13 | | - "reveal": "never", |
14 | | - "group": "watchers" |
15 | | - }, |
16 | | - "group": { |
17 | | - "kind": "build", |
18 | | - }, |
19 | | - "options": { |
20 | | - "cwd": "${workspaceFolder}/vscode/extension" |
21 | | - } |
22 | | - }, |
23 | | - { |
24 | | - "label": "extension-watch-develop", |
25 | | - "group": { |
26 | | - "kind": "build", |
27 | | - "isDefault": true |
28 | | - }, |
29 | | - "dependsOn": ["extension-watch"], |
30 | | - "dependsOrder": "parallel" |
31 | | - }, |
32 | | - { |
33 | | - "type": "npm", |
34 | | - "script": "watch-tests", |
35 | | - "problemMatcher": "$tsc-watch", |
36 | | - "isBackground": true, |
37 | | - "presentation": { |
38 | | - "reveal": "never", |
39 | | - "group": "watchers" |
40 | | - }, |
41 | | - "group": "build", |
42 | | - "options": { |
43 | | - "cwd": "${workspaceFolder}/vscode/extension" |
44 | | - } |
45 | | - }, |
46 | | - { |
47 | | - "label": "tasks: watch-tests", |
48 | | - "dependsOn": [ |
49 | | - "npm: watch", |
50 | | - "npm: watch-tests" |
51 | | - ], |
52 | | - "problemMatcher": [] |
53 | | - } |
54 | | - ] |
| 4 | + "version": "2.0.0", |
| 5 | + "tasks": [ |
| 6 | + { |
| 7 | + "label": "extension-watch", |
| 8 | + "type": "npm", |
| 9 | + "script": "watch", |
| 10 | + "problemMatcher": "$ts-webpack-watch", |
| 11 | + "isBackground": true, |
| 12 | + "presentation": { |
| 13 | + "reveal": "never", |
| 14 | + "group": "watchers" |
| 15 | + }, |
| 16 | + "group": { |
| 17 | + "kind": "build" |
| 18 | + }, |
| 19 | + "options": { |
| 20 | + "cwd": "${workspaceFolder}/vscode/extension" |
| 21 | + } |
| 22 | + }, |
| 23 | + { |
| 24 | + "label": "extension-watch-develop", |
| 25 | + "group": { |
| 26 | + "kind": "build", |
| 27 | + "isDefault": true |
| 28 | + }, |
| 29 | + "dependsOn": ["extension-watch"], |
| 30 | + "dependsOrder": "parallel" |
| 31 | + }, |
| 32 | + { |
| 33 | + "type": "npm", |
| 34 | + "script": "watch-tests", |
| 35 | + "problemMatcher": "$tsc-watch", |
| 36 | + "isBackground": true, |
| 37 | + "presentation": { |
| 38 | + "reveal": "never", |
| 39 | + "group": "watchers" |
| 40 | + }, |
| 41 | + "group": "build", |
| 42 | + "options": { |
| 43 | + "cwd": "${workspaceFolder}/vscode/extension" |
| 44 | + } |
| 45 | + }, |
| 46 | + { |
| 47 | + "label": "tasks: watch-tests", |
| 48 | + "dependsOn": ["npm: watch", "npm: watch-tests"], |
| 49 | + "problemMatcher": [] |
| 50 | + } |
| 51 | + ] |
55 | 52 | } |
0 commit comments