Always default to using JSON and do not format it

This commit is contained in:
Mohamed Hegazy
2015-02-14 15:50:06 -08:00
parent a0b557e1e2
commit dfd8a0620d
3 changed files with 7 additions and 56 deletions

View File

@@ -583,7 +583,7 @@ module Harness.LanguageService {
// This host is just a proxy for the clientHost, it uses the client
// host to answer server queries about files on disk
var serverHost = new SessionServerHost(clientHost);
var server = new ts.server.Session(serverHost, serverHost, /*useProtocol*/ true, /*prettyJSON*/ false);
var server = new ts.server.Session(serverHost, serverHost);
// Fake the connection between the client and the server
serverHost.writeMessage = client.onMessage.bind(client);