Explorar el Código

fix: enable markdown in completion details

dmkokovtsev hace 1 año
padre
commit
12ff291428
Se han modificado 1 ficheros con 4 adiciones y 1 borrados
  1. 4 1
      src/language/json/jsonWorker.ts

+ 4 - 1
src/language/json/jsonWorker.ts

@@ -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);
 	}