We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8a86d2 commit 0b458d2Copy full SHA for 0b458d2
language-server/src/services/configuration.js
@@ -74,15 +74,7 @@ export class Configuration {
74
this.#didChangeConfigurationHandlers = [];
75
76
this.#server.onDidChangeConfiguration((params) => {
77
- /** @type unknown */
78
- const settings = params.settings;
79
-
80
81
- const fullSettings = {
82
- ...this.#defaultSettings,
83
- .../** @type Settings */(settings).jsonSchemaLanguageServer
84
- };
85
- this.#settings = /** @type DocumentSettings */ (fullSettings);
+ this.#settings = undefined;
86
this.#matcher = undefined;
87
88
for (const handler of this.#didChangeConfigurationHandlers) {
0 commit comments