1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
| {
| "version": "2.0.0",
| "tasks": [
| {
| "type": "npm",
| "script": "e2e:tsc",
| "path": "e2elib/",
| "problemMatcher": [],
| "label": "npm: e2e:tsc - e2elib",
| "detail": "tsc --project tsconfig.e2e.json",
| "options": {
| "env": {
| "E2E_MODE": "true",
| "E2E_TARGET": "${workspaceFolder}"
| }
| },
| "group": {
| "kind": "build",
| "isDefault": true
| }
| },
| {
| "type": "npm",
| "script": "e2e:chrome",
| "path": "e2elib/",
| "problemMatcher": [],
| "label": "npm: e2e:chrome - e2elib",
| "detail": "protractor lib/src/localconf.js --multiCapabilities --browser=chrome",
| "options": {
| "env": {
| "E2E_MODE": "true",
| "E2E_TARGET": "${workspaceFolder}"
| }
| }
| },
| {
| "type": "npm",
| "script": "e2e:firefox",
| "path": "e2elib/",
| "problemMatcher": [],
| "label": "npm: e2e:firefox - e2elib",
| "detail": "protractor lib/src/localconf.js --multiCapabilities --browser=firefox",
| "options": {
| "env": {
| "E2E_MODE": "true",
| "E2E_TARGET": "${workspaceFolder}"
| }
| }
| },
| {
| "type": "npm",
| "script": "e2e:lint",
| "path": "e2elib/",
| "problemMatcher": [],
| "label": "npm: e2e:lint - e2elib",
| "detail": "tslint -c tslint.json -p tsconfig.e2e.json"
| }
| ]
| }
|
|