You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason, when a string config option isn't specified it gets a
default value of `""`, so when we checked the new config option, the
empty string value would get chosen instead. So I added a default of
null for the old options, and I also switched the existing defaults to
the new options, choosing the old options first if they're present.
"description": "Executable to run the Smithy Language Server. Can be the executable name if it is on your PATH, or an absolute path to the executable."
154
155
},
155
156
"smithy.server.version": {
156
157
"type": "string",
158
+
"default": "0.6.0",
157
159
"description": "Version of the Smithy Language Server to use. Ignored if smithy.server.executable is provided."
0 commit comments