Skip to content

Commit

Permalink
Fix some build errors using latest typescript version
Browse files Browse the repository at this point in the history
  • Loading branch information
kburtram committed Nov 9, 2017
1 parent 3cdac41 commit 5b5adbb
Show file tree
Hide file tree
Showing 18 changed files with 2 additions and 1,088 deletions.
1 change: 0 additions & 1 deletion build/npm/postinstall.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ const extensions = [
'extension-editing',
'markdown',
'merge-conflict',
'account-provider-azure',
'insights-default'
];

Expand Down
2 changes: 1 addition & 1 deletion dataprotocol-node/jsonrpc/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ function createMessageConnection<T extends MessageConnection>(messageReader: Mes

eventHandlers[type.method] = handler;
},
sendRequest: <P, R, E>(type: RequestType<P, R, E>, params: P, token?: CancellationToken) => {
sendRequest: <P, R, E>(type: RequestType<P, R, E>, params: P, token?: CancellationToken): any => {
throwIfClosedOrDisposed();

let id = sequenceNumber++;
Expand Down
2 changes: 1 addition & 1 deletion dataprotocol-node/jsonrpc/src/messageWriter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export class IPCMessageWriter extends AbstractMessageWriter implements MessageWr

public write(msg: Message): void {
try {
this.process.send(msg);
(<any>this.process).send(<any>msg);
this.errorCount = 0;
} catch (error) {
this.errorCount++;
Expand Down
Empty file.
34 changes: 0 additions & 34 deletions extensions/account-provider-azure/package.json

This file was deleted.

3 changes: 0 additions & 3 deletions extensions/account-provider-azure/package.nls.json

This file was deleted.

Loading

0 comments on commit 5b5adbb

Please sign in to comment.