Skip to content
This repository was archived by the owner on Dec 15, 2022. It is now read-only.

Commit 9cd50e6

Browse files
author
Winston Liu
authored
Update config schema
1 parent 5cbbe39 commit 9cd50e6

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

package.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,30 @@
3535
"title": "Language Server",
3636
"description": "Settings that control language server functionality.",
3737
"properties": {
38+
"configuration": {
39+
"type": "object",
40+
"title": "Project Configuration",
41+
"properties": {
42+
"updateBuildConfiguration": {
43+
"type": "string",
44+
"title": "Update Build Configuration",
45+
"enum": [
46+
{"value": "disabled", "description": "Never"},
47+
{"value": "interactive", "description": "Ask every time"},
48+
{"value": "automatic", "description": "Always"}
49+
],
50+
"default": "interactive",
51+
"description": "Whether to automatically update the project configuration when build files change."
52+
}
53+
}
54+
},
3855
"signatureHelp": {
3956
"type": "object",
4057
"title": "Signature Help",
4158
"properties": {
4259
"enabled": {
4360
"type": "boolean",
61+
"title": "Enabled",
4462
"default": true,
4563
"description": "Controls whether signature help is enabled."
4664
}

0 commit comments

Comments
 (0)