fix: enable markdown in completion details

This commit is contained in:
dmkokovtsev 2023-10-07 22:42:05 +03:00
Родитель 3e047efd34
Коммит 12ff291428
1 изменённых файлов: 4 добавлений и 1 удалений

Просмотреть файл

@ -32,7 +32,10 @@ export class JSONWorker {
return resolvePath(base, relativePath);
}
},
schemaRequestService: createData.enableSchemaRequest ? defaultSchemaRequestService : undefined
schemaRequestService: createData.enableSchemaRequest
? defaultSchemaRequestService
: undefined,
clientCapabilities: jsonService.ClientCapabilities.LATEST
});
this._languageService.configure(this._languageSettings);
}