forked from module-federation/core
-
Notifications
You must be signed in to change notification settings - Fork 0
/
launch.json
113 lines (113 loc) · 2.53 KB
/
launch.json
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"version": "0.2.0",
"configurations": [
{
"command": "npm run nx",
"name": "Run nx",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run commit",
"name": "Run commit",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run docs",
"name": "Run docs",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run e2e:test",
"name": "Run e2e:test",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run lint",
"name": "Run lint",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run test",
"name": "Run test",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run build",
"name": "Run build",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run lint-fix",
"name": "Run lint-fix",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run trigger-release",
"name": "Run trigger-release",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run serve:next",
"name": "Run serve:next",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run serve:website",
"name": "Run serve:website",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run build:website",
"name": "Run build:website",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run extract-i18n:website",
"name": "Run extract-i18n:website",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run postinstall",
"name": "Run postinstall",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run sync:types:webpack",
"name": "Run sync:types:webpack",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run sync:pullMFTypes",
"name": "Run sync:pullMFTypes",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run app:next:dev",
"name": "Run app:next:dev",
"request": "launch",
"type": "node-terminal"
},
{
"command": "npm run app:next:prod",
"name": "Run app:next:prod",
"request": "launch",
"type": "node-terminal"
}
]
}