generated from LinbuduLab/vscode-extension-monorepo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpreserved.json
55 lines (55 loc) · 1.45 KB
/
preserved.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
{
"contributes": {
"commands": [
{
"title": "Create private extension configuration used by pnpm init command.",
"command": "pnpm-vscode-helper.create-private-extension-config",
"category": "PNPM VS Code Helper"
},
{
"title": "Remove private extension configuration used by pnpm init command.",
"command": "pnpm-vscode-helper.remove-private-extension-config",
"category": "PNPM VS Code Helper"
},
{
"title": "Grouping workspace packages",
"command": "pnpm-vscode-helper.grouping-packages",
"category": "PNPM VS Code Helper"
},
{
"title": "Check and update package deps",
"command": "pnpm-vscode-helper.check-dep-updates",
"category": "PNPM VS Code Helper"
}
]
},
"configurations": {
"properties": {
"pnpm-vscode-helper.locale": {
"type": "string",
"default": "en-US"
},
"pnpm-vscode-helper.shamefullyHoist": {
"type": "boolean",
"default": false
},
"pnpm-vscode-helper.workspacePackageGroups": {
"type": "array",
"default": []
},
"pnpm-vscode-helper.privateExtConfig": {
"type": "object",
"properties": {
"username": {
"type": "string",
"default": ""
},
"email": {
"type": "string",
"default": ""
}
}
}
}
}
}