Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/configuration-editing/schemas/devContainer.vscode.schema.json
3296 views
1
{
2
"$schema": "http://json-schema.org/draft-07/schema#",
3
"type": "object",
4
"properties": {
5
"customizations": {
6
"type": "object",
7
"properties": {
8
"vscode": {
9
"type": "object",
10
"properties": {
11
"extensions": {
12
"type": "array",
13
"description": "An array of extensions that should be installed into the container. A minus '-' in front of the extension id removes it from the list of extensions to be installed.",
14
"items": {
15
"type": "string",
16
"pattern": "^-?([a-z0-9A-Z][a-z0-9A-Z-]*)\\.([a-z0-9A-Z][a-z0-9A-Z-]*)((@(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)|@prerelease)?$",
17
"errorMessage": "Expected format: '${publisher}.${name}', '-${publisher}.${name}' or '${publisher}.${name}@${version}'. Example: 'ms-dotnettools.csharp'."
18
}
19
},
20
"settings": {
21
"$ref": "vscode://schemas/settings/machine",
22
"description": "Machine specific settings that should be copied into the container. These are only copied when connecting to the container for the first time, rebuilding the container then triggers it again."
23
},
24
"mcp": {
25
"$ref": "vscode://schemas/mcp",
26
"description": "Model Context Protocol server configurations"
27
},
28
"devPort": {
29
"type": "integer",
30
"description": "The port VS Code can use to connect to its backend."
31
}
32
}
33
}
34
}
35
},
36
"extensions": {
37
"type": "array",
38
"description": "An array of extensions that should be installed into the container. A minus '-' in front of the extension id removes it from the list of extensions to be installed.",
39
"items": {
40
"type": "string",
41
"pattern": "^-?([a-z0-9A-Z][a-z0-9A-Z-]*)\\.([a-z0-9A-Z][a-z0-9A-Z-]*)((@(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)(?:-((?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*)(?:\\.(?:0|[1-9]\\d*|\\d*[a-zA-Z-][0-9a-zA-Z-]*))*))?(?:\\+([0-9a-zA-Z-]+(?:\\.[0-9a-zA-Z-]+)*))?)|@prerelease)?$",
42
"errorMessage": "Expected format: '${publisher}.${name}', '-${publisher}.${name}' or '${publisher}.${name}@${version}'. Example: 'ms-dotnettools.csharp'."
43
},
44
"deprecated": true,
45
"deprecationMessage": "Use 'customizations/vscode/extensions' instead"
46
},
47
"settings": {
48
"$ref": "vscode://schemas/settings/machine",
49
"description": "Machine specific settings that should be copied into the container. These are only copied when connecting to the container for the first time, rebuilding the container then triggers it again.",
50
"deprecated": true,
51
"deprecationMessage": "Use 'customizations/vscode/settings' instead"
52
},
53
"devPort": {
54
"type": "integer",
55
"description": "The port VS Code can use to connect to its backend.",
56
"deprecated": true,
57
"deprecationMessage": "Use 'customizations/vscode/devPort' instead"
58
}
59
}
60
}
61
62