vscode-languageserver-protocol 3.15.0-next.8 → 3.15.0-next.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,37 +1,24 @@
1
1
  import { RequestType, RequestHandler, ProgressType } from 'vscode-jsonrpc';
2
2
  import { Declaration, DeclarationLink, Location, LocationLink } from 'vscode-languageserver-types';
3
3
  import { TextDocumentRegistrationOptions, StaticRegistrationOptions, TextDocumentPositionParams, PartialResultParams, WorkDoneProgressParams, WorkDoneProgressOptions } from './protocol';
4
+ /**
5
+ * Since 3.14.0
6
+ */
4
7
  export interface DeclarationClientCapabilities {
5
8
  /**
6
- * The text document client capabilities
9
+ * Whether declaration supports dynamic registration. If this is set to `true`
10
+ * the client supports the new `DeclarationRegistrationOptions` return value
11
+ * for the corresponding server capability as well.
12
+ */
13
+ dynamicRegistration?: boolean;
14
+ /**
15
+ * The client supports additional metadata in the form of declaration links.
7
16
  */
8
- textDocument?: {
9
- /**
10
- * Capabilities specific to the `textDocument/declaration`
11
- */
12
- declaration?: {
13
- /**
14
- * Whether declaration supports dynamic registration. If this is set to `true`
15
- * the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
16
- * return value for the corresponding server capability as well.
17
- */
18
- dynamicRegistration?: boolean;
19
- /**
20
- * The client supports additional metadata in the form of declaration links.
21
- */
22
- linkSupport?: boolean;
23
- };
24
- };
17
+ linkSupport?: boolean;
25
18
  }
26
19
  export interface DeclarationOptions extends WorkDoneProgressOptions {
27
20
  }
28
- export interface DeclarationRegistrationOptions extends TextDocumentRegistrationOptions, DeclarationOptions {
29
- }
30
- export interface DeclarationServerCapabilities {
31
- /**
32
- * The server provides Goto Type Definition support.
33
- */
34
- declarationProvider?: boolean | DeclarationOptions | (DeclarationRegistrationOptions & StaticRegistrationOptions);
21
+ export interface DeclarationRegistrationOptions extends DeclarationOptions, TextDocumentRegistrationOptions, StaticRegistrationOptions {
35
22
  }
36
23
  export interface DeclarationParams extends TextDocumentPositionParams, WorkDoneProgressParams, PartialResultParams {
37
24
  }
@@ -3,41 +3,25 @@ import { TextDocumentIdentifier } from 'vscode-languageserver-types';
3
3
  import { TextDocumentRegistrationOptions, StaticRegistrationOptions, PartialResultParams, WorkDoneProgressParams, WorkDoneProgressOptions } from './protocol';
4
4
  export interface FoldingRangeClientCapabilities {
5
5
  /**
6
- * The text document client capabilities
6
+ * Whether implementation supports dynamic registration for folding range providers. If this is set to `true`
7
+ * the client supports the new `FoldingRangeRegistrationOptions` return value for the corresponding server
8
+ * capability as well.
7
9
  */
8
- textDocument?: {
9
- /**
10
- * Capabilities specific to `textDocument/foldingRange` requests
11
- */
12
- foldingRange?: {
13
- /**
14
- * Whether implementation supports dynamic registration for folding range providers. If this is set to `true`
15
- * the client supports the new `(FoldingRangeProviderOptions & TextDocumentRegistrationOptions & StaticRegistrationOptions)`
16
- * return value for the corresponding server capability as well.
17
- */
18
- dynamicRegistration?: boolean;
19
- /**
20
- * The maximum number of folding ranges that the client prefers to receive per document. The value serves as a
21
- * hint, servers are free to follow the limit.
22
- */
23
- rangeLimit?: number;
24
- /**
25
- * If set, the client signals that it only supports folding complete lines. If set, client will
26
- * ignore specified `startCharacter` and `endCharacter` properties in a FoldingRange.
27
- */
28
- lineFoldingOnly?: boolean;
29
- };
30
- };
10
+ dynamicRegistration?: boolean;
11
+ /**
12
+ * The maximum number of folding ranges that the client prefers to receive per document. The value serves as a
13
+ * hint, servers are free to follow the limit.
14
+ */
15
+ rangeLimit?: number;
16
+ /**
17
+ * If set, the client signals that it only supports folding complete lines. If set, client will
18
+ * ignore specified `startCharacter` and `endCharacter` properties in a FoldingRange.
19
+ */
20
+ lineFoldingOnly?: boolean;
31
21
  }
32
22
  export interface FoldingRangeOptions extends WorkDoneProgressOptions {
33
23
  }
34
- export interface FoldingRangeRegistrationOptions extends TextDocumentRegistrationOptions, FoldingRangeOptions {
35
- }
36
- export interface FoldingRangeServerCapabilities {
37
- /**
38
- * The server provides folding provider support.
39
- */
40
- foldingRangeProvider?: boolean | FoldingRangeOptions | (FoldingRangeRegistrationOptions & StaticRegistrationOptions);
24
+ export interface FoldingRangeRegistrationOptions extends TextDocumentRegistrationOptions, FoldingRangeOptions, StaticRegistrationOptions {
41
25
  }
42
26
  /**
43
27
  * Enum of known range kinds
@@ -1,37 +1,26 @@
1
1
  import { RequestType, RequestHandler, ProgressType } from 'vscode-jsonrpc';
2
2
  import { Definition, DefinitionLink, Location, LocationLink } from 'vscode-languageserver-types';
3
3
  import { TextDocumentRegistrationOptions, StaticRegistrationOptions, TextDocumentPositionParams, PartialResultParams, WorkDoneProgressParams, WorkDoneProgressOptions } from './protocol';
4
+ /**
5
+ * Since 3.6.0
6
+ */
4
7
  export interface ImplementationClientCapabilities {
5
8
  /**
6
- * The text document client capabilities
9
+ * Whether implementation supports dynamic registration. If this is set to `true`
10
+ * the client supports the new `ImplementationRegistrationOptions` return value
11
+ * for the corresponding server capability as well.
12
+ */
13
+ dynamicRegistration?: boolean;
14
+ /**
15
+ * The client supports additional metadata in the form of definition links.
16
+ *
17
+ * Since 3.14.0
7
18
  */
8
- textDocument?: {
9
- /**
10
- * Capabilities specific to the `textDocument/implementation`
11
- */
12
- implementation?: {
13
- /**
14
- * Whether implementation supports dynamic registration. If this is set to `true`
15
- * the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
16
- * return value for the corresponding server capability as well.
17
- */
18
- dynamicRegistration?: boolean;
19
- /**
20
- * The client supports additional metadata in the form of definition links.
21
- */
22
- linkSupport?: boolean;
23
- };
24
- };
19
+ linkSupport?: boolean;
25
20
  }
26
21
  export interface ImplementationOptions extends WorkDoneProgressOptions {
27
22
  }
28
- export interface ImplementationRegistrationOptions extends TextDocumentRegistrationOptions, ImplementationOptions {
29
- }
30
- export interface ImplementationServerCapabilities {
31
- /**
32
- * The server provides Goto Implementation support.
33
- */
34
- implementationProvider?: boolean | ImplementationOptions | (ImplementationRegistrationOptions & StaticRegistrationOptions);
23
+ export interface ImplementationRegistrationOptions extends TextDocumentRegistrationOptions, ImplementationOptions, StaticRegistrationOptions {
35
24
  }
36
25
  export interface ImplementationParams extends TextDocumentPositionParams, WorkDoneProgressParams, PartialResultParams {
37
26
  }
package/lib/protocol.js CHANGED
@@ -112,28 +112,6 @@ var FailureHandlingKind;
112
112
  */
113
113
  FailureHandlingKind.Undo = 'undo';
114
114
  })(FailureHandlingKind = exports.FailureHandlingKind || (exports.FailureHandlingKind = {}));
115
- /**
116
- * Defines how the host (editor) should sync
117
- * document changes to the language server.
118
- */
119
- var TextDocumentSyncKind;
120
- (function (TextDocumentSyncKind) {
121
- /**
122
- * Documents should not be synced at all.
123
- */
124
- TextDocumentSyncKind.None = 0;
125
- /**
126
- * Documents are synced by always sending the full content
127
- * of the document.
128
- */
129
- TextDocumentSyncKind.Full = 1;
130
- /**
131
- * Documents are synced by sending the full content on open.
132
- * After that only incremental updates to the document are
133
- * send.
134
- */
135
- TextDocumentSyncKind.Incremental = 2;
136
- })(TextDocumentSyncKind = exports.TextDocumentSyncKind || (exports.TextDocumentSyncKind = {}));
137
115
  /**
138
116
  * The StaticRegistrationOptions namespace provides helper functions to work with
139
117
  * [StaticRegistrationOptions](#StaticRegistrationOptions) literals.
@@ -227,7 +205,6 @@ var ExitNotification;
227
205
  (function (ExitNotification) {
228
206
  ExitNotification.type = new vscode_jsonrpc_1.NotificationType0('exit');
229
207
  })(ExitNotification = exports.ExitNotification || (exports.ExitNotification = {}));
230
- //---- Configuration notification ----
231
208
  /**
232
209
  * The configuration change notification is sent from the client to the server
233
210
  * when the client's configuration has changed. The notification contains
@@ -293,6 +270,28 @@ var TelemetryEventNotification;
293
270
  (function (TelemetryEventNotification) {
294
271
  TelemetryEventNotification.type = new vscode_jsonrpc_1.NotificationType('telemetry/event');
295
272
  })(TelemetryEventNotification = exports.TelemetryEventNotification || (exports.TelemetryEventNotification = {}));
273
+ /**
274
+ * Defines how the host (editor) should sync
275
+ * document changes to the language server.
276
+ */
277
+ var TextDocumentSyncKind;
278
+ (function (TextDocumentSyncKind) {
279
+ /**
280
+ * Documents should not be synced at all.
281
+ */
282
+ TextDocumentSyncKind.None = 0;
283
+ /**
284
+ * Documents are synced by always sending the full content
285
+ * of the document.
286
+ */
287
+ TextDocumentSyncKind.Full = 1;
288
+ /**
289
+ * Documents are synced by sending the full content on open.
290
+ * After that only incremental updates to the document are
291
+ * send.
292
+ */
293
+ TextDocumentSyncKind.Incremental = 2;
294
+ })(TextDocumentSyncKind = exports.TextDocumentSyncKind || (exports.TextDocumentSyncKind = {}));
296
295
  /**
297
296
  * The document open notification is sent from the client to the server to signal
298
297
  * newly opened text documents. The document's truth is now managed by the client
@@ -356,7 +355,6 @@ var WillSaveTextDocumentWaitUntilRequest;
356
355
  (function (WillSaveTextDocumentWaitUntilRequest) {
357
356
  WillSaveTextDocumentWaitUntilRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/willSaveWaitUntil');
358
357
  })(WillSaveTextDocumentWaitUntilRequest = exports.WillSaveTextDocumentWaitUntilRequest || (exports.WillSaveTextDocumentWaitUntilRequest = {}));
359
- //---- File eventing ----
360
358
  /**
361
359
  * The watched files notification is sent from the client to the server when
362
360
  * the client detects changes to file watched by the language client.
@@ -398,7 +396,6 @@ var WatchKind;
398
396
  */
399
397
  WatchKind.Delete = 4;
400
398
  })(WatchKind = exports.WatchKind || (exports.WatchKind = {}));
401
- //---- Diagnostic notification ----
402
399
  /**
403
400
  * Diagnostics notification are sent from the server to the client to signal
404
401
  * results of validation runs.
@@ -407,7 +404,6 @@ var PublishDiagnosticsNotification;
407
404
  (function (PublishDiagnosticsNotification) {
408
405
  PublishDiagnosticsNotification.type = new vscode_jsonrpc_1.NotificationType('textDocument/publishDiagnostics');
409
406
  })(PublishDiagnosticsNotification = exports.PublishDiagnosticsNotification || (exports.PublishDiagnosticsNotification = {}));
410
- //---- Completion Support --------------------------
411
407
  /**
412
408
  * How a completion was triggered
413
409
  */
@@ -462,6 +458,26 @@ var HoverRequest;
462
458
  (function (HoverRequest) {
463
459
  HoverRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/hover');
464
460
  })(HoverRequest = exports.HoverRequest || (exports.HoverRequest = {}));
461
+ /**
462
+ * How a signature help was triggered.
463
+ *
464
+ * @since 3.15.0
465
+ */
466
+ var SignatureHelpTriggerKind;
467
+ (function (SignatureHelpTriggerKind) {
468
+ /**
469
+ * Signature help was invoked manually by the user or by a command.
470
+ */
471
+ SignatureHelpTriggerKind.Invoked = 1;
472
+ /**
473
+ * Signature help was triggered by a trigger character.
474
+ */
475
+ SignatureHelpTriggerKind.TriggerCharacter = 2;
476
+ /**
477
+ * Signature help was triggered by the cursor moving or by the document content changing.
478
+ */
479
+ SignatureHelpTriggerKind.ContentChange = 3;
480
+ })(SignatureHelpTriggerKind = exports.SignatureHelpTriggerKind || (exports.SignatureHelpTriggerKind = {}));
465
481
  var SignatureHelpRequest;
466
482
  (function (SignatureHelpRequest) {
467
483
  SignatureHelpRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/signatureHelp');
@@ -511,6 +527,14 @@ var DocumentSymbolRequest;
511
527
  DocumentSymbolRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/documentSymbol');
512
528
  DocumentSymbolRequest.resultType = new vscode_jsonrpc_1.ProgressType();
513
529
  })(DocumentSymbolRequest = exports.DocumentSymbolRequest || (exports.DocumentSymbolRequest = {}));
530
+ /**
531
+ * A request to provide commands for the given text document and range.
532
+ */
533
+ var CodeActionRequest;
534
+ (function (CodeActionRequest) {
535
+ CodeActionRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/codeAction');
536
+ CodeActionRequest.resultType = new vscode_jsonrpc_1.ProgressType();
537
+ })(CodeActionRequest = exports.CodeActionRequest || (exports.CodeActionRequest = {}));
514
538
  /**
515
539
  * A request to list project-wide symbols matching the query string given
516
540
  * by the [WorkspaceSymbolParams](#WorkspaceSymbolParams). The response is
@@ -522,14 +546,6 @@ var WorkspaceSymbolRequest;
522
546
  WorkspaceSymbolRequest.type = new vscode_jsonrpc_1.RequestType('workspace/symbol');
523
547
  WorkspaceSymbolRequest.resultType = new vscode_jsonrpc_1.ProgressType();
524
548
  })(WorkspaceSymbolRequest = exports.WorkspaceSymbolRequest || (exports.WorkspaceSymbolRequest = {}));
525
- /**
526
- * A request to provide commands for the given text document and range.
527
- */
528
- var CodeActionRequest;
529
- (function (CodeActionRequest) {
530
- CodeActionRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/codeAction');
531
- CodeActionRequest.resultType = new vscode_jsonrpc_1.ProgressType();
532
- })(CodeActionRequest = exports.CodeActionRequest || (exports.CodeActionRequest = {}));
533
549
  /**
534
550
  * A request to provide code lens for the given text document.
535
551
  */
@@ -545,6 +561,23 @@ var CodeLensResolveRequest;
545
561
  (function (CodeLensResolveRequest) {
546
562
  CodeLensResolveRequest.type = new vscode_jsonrpc_1.RequestType('codeLens/resolve');
547
563
  })(CodeLensResolveRequest = exports.CodeLensResolveRequest || (exports.CodeLensResolveRequest = {}));
564
+ /**
565
+ * A request to provide document links
566
+ */
567
+ var DocumentLinkRequest;
568
+ (function (DocumentLinkRequest) {
569
+ DocumentLinkRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/documentLink');
570
+ DocumentLinkRequest.resultType = new vscode_jsonrpc_1.ProgressType();
571
+ })(DocumentLinkRequest = exports.DocumentLinkRequest || (exports.DocumentLinkRequest = {}));
572
+ /**
573
+ * Request to resolve additional information for a given document link. The request's
574
+ * parameter is of type [DocumentLink](#DocumentLink) the response
575
+ * is of type [DocumentLink](#DocumentLink) or a Thenable that resolves to such.
576
+ */
577
+ var DocumentLinkResolveRequest;
578
+ (function (DocumentLinkResolveRequest) {
579
+ DocumentLinkResolveRequest.type = new vscode_jsonrpc_1.RequestType('documentLink/resolve');
580
+ })(DocumentLinkResolveRequest = exports.DocumentLinkResolveRequest || (exports.DocumentLinkResolveRequest = {}));
548
581
  /**
549
582
  * A request to to format a whole document.
550
583
  */
@@ -580,23 +613,6 @@ var PrepareRenameRequest;
580
613
  (function (PrepareRenameRequest) {
581
614
  PrepareRenameRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/prepareRename');
582
615
  })(PrepareRenameRequest = exports.PrepareRenameRequest || (exports.PrepareRenameRequest = {}));
583
- /**
584
- * A request to provide document links
585
- */
586
- var DocumentLinkRequest;
587
- (function (DocumentLinkRequest) {
588
- DocumentLinkRequest.type = new vscode_jsonrpc_1.RequestType('textDocument/documentLink');
589
- DocumentLinkRequest.resultType = new vscode_jsonrpc_1.ProgressType();
590
- })(DocumentLinkRequest = exports.DocumentLinkRequest || (exports.DocumentLinkRequest = {}));
591
- /**
592
- * Request to resolve additional information for a given document link. The request's
593
- * parameter is of type [DocumentLink](#DocumentLink) the response
594
- * is of type [DocumentLink](#DocumentLink) or a Thenable that resolves to such.
595
- */
596
- var DocumentLinkResolveRequest;
597
- (function (DocumentLinkResolveRequest) {
598
- DocumentLinkResolveRequest.type = new vscode_jsonrpc_1.RequestType('documentLink/resolve');
599
- })(DocumentLinkResolveRequest = exports.DocumentLinkResolveRequest || (exports.DocumentLinkResolveRequest = {}));
600
616
  /**
601
617
  * A request send from the client to the server to execute a command. The request might return
602
618
  * a workspace edit which the client will apply to the workspace.
@@ -5,7 +5,10 @@ export interface WorkDoneProgressClientCapabilities {
5
5
  */
6
6
  window?: {
7
7
  /**
8
- * Whether client supports handling progress notifications.
8
+ * Whether client supports handling progress notifications. If set servers are allowed to
9
+ * report in `workDoneProgress` property in the request specific server capabilities.
10
+ *
11
+ * Since 3.15.0
9
12
  */
10
13
  workDoneProgress?: boolean;
11
14
  };
@@ -71,8 +74,8 @@ export interface WorkDoneProgressReport {
71
74
  */
72
75
  percentage?: number;
73
76
  }
74
- export interface WorkDoneProgressDone {
75
- kind: 'done';
77
+ export interface WorkDoneProgressEnd {
78
+ kind: 'end';
76
79
  /**
77
80
  * Optional, a final message indicating to for example indicate the outcome
78
81
  * of the operation.
@@ -80,7 +83,7 @@ export interface WorkDoneProgressDone {
80
83
  message?: string;
81
84
  }
82
85
  export declare namespace WorkDoneProgress {
83
- const type: ProgressType<WorkDoneProgressBegin | WorkDoneProgressReport | WorkDoneProgressDone>;
86
+ const type: ProgressType<WorkDoneProgressBegin | WorkDoneProgressReport | WorkDoneProgressEnd>;
84
87
  }
85
88
  export interface WorkDoneProgressCreateParams {
86
89
  /**
@@ -3,31 +3,15 @@ import { TextDocumentIdentifier, Position, SelectionRange } from 'vscode-languag
3
3
  import { TextDocumentRegistrationOptions, WorkDoneProgressOptions, StaticRegistrationOptions, WorkDoneProgressParams, PartialResultParams } from './protocol';
4
4
  export interface SelectionRangeClientCapabilities {
5
5
  /**
6
- * The text document client capabilities
6
+ * Whether implementation supports dynamic registration for selection range providers. If this is set to `true`
7
+ * the client supports the new `SelectionRangeRegistrationOptions` return value for the corresponding server
8
+ * capability as well.
7
9
  */
8
- textDocument?: {
9
- /**
10
- * Capabilities specific to `textDocument/selectionRange` requests
11
- */
12
- selectionRange?: {
13
- /**
14
- * Whether implementation supports dynamic registration for selection range providers. If this is set to `true`
15
- * the client supports the new `(SelectionRangeProviderOptions & TextDocumentRegistrationOptions & StaticRegistrationOptions)`
16
- * return value for the corresponding server capability as well.
17
- */
18
- dynamicRegistration?: boolean;
19
- };
20
- };
10
+ dynamicRegistration?: boolean;
21
11
  }
22
12
  export interface SelectionRangeOptions extends WorkDoneProgressOptions {
23
13
  }
24
- export interface SelectionRangeRegistrationOptions extends SelectionRangeOptions, TextDocumentRegistrationOptions {
25
- }
26
- export interface SelectionRangeServerCapabilities {
27
- /**
28
- * The server provides selection range support.
29
- */
30
- selectionRangeProvider?: boolean | SelectionRangeOptions | (SelectionRangeRegistrationOptions & StaticRegistrationOptions);
14
+ export interface SelectionRangeRegistrationOptions extends SelectionRangeOptions, TextDocumentRegistrationOptions, StaticRegistrationOptions {
31
15
  }
32
16
  /**
33
17
  * A parameter literal used in selection range requests.
@@ -1,37 +1,26 @@
1
1
  import { RequestType, RequestHandler, ProgressType } from 'vscode-jsonrpc';
2
2
  import { Definition, DefinitionLink, LocationLink, Location } from 'vscode-languageserver-types';
3
3
  import { TextDocumentRegistrationOptions, StaticRegistrationOptions, TextDocumentPositionParams, PartialResultParams, WorkDoneProgressParams, WorkDoneProgressOptions } from './protocol';
4
+ /**
5
+ * Since 3.6.0
6
+ */
4
7
  export interface TypeDefinitionClientCapabilities {
5
8
  /**
6
- * The text document client capabilities
9
+ * Whether implementation supports dynamic registration. If this is set to `true`
10
+ * the client supports the new `TypeDefinitionRegistrationOptions` return value
11
+ * for the corresponding server capability as well.
12
+ */
13
+ dynamicRegistration?: boolean;
14
+ /**
15
+ * The client supports additional metadata in the form of definition links.
16
+ *
17
+ * Since 3.14.0
7
18
  */
8
- textDocument?: {
9
- /**
10
- * Capabilities specific to the `textDocument/typeDefinition`
11
- */
12
- typeDefinition?: {
13
- /**
14
- * Whether implementation supports dynamic registration. If this is set to `true`
15
- * the client supports the new `(TextDocumentRegistrationOptions & StaticRegistrationOptions)`
16
- * return value for the corresponding server capability as well.
17
- */
18
- dynamicRegistration?: boolean;
19
- /**
20
- * The client supports additional metadata in the form of definition links.
21
- */
22
- linkSupport?: boolean;
23
- };
24
- };
19
+ linkSupport?: boolean;
25
20
  }
26
21
  export interface TypeDefinitionOptions extends WorkDoneProgressOptions {
27
22
  }
28
- export interface TypeDefinitionRegistrationOptions extends TextDocumentRegistrationOptions, TypeDefinitionOptions {
29
- }
30
- export interface TypeDefinitionServerCapabilities {
31
- /**
32
- * The server provides Goto Type Definition support.
33
- */
34
- typeDefinitionProvider?: boolean | TypeDefinitionOptions | (TypeDefinitionRegistrationOptions & StaticRegistrationOptions);
23
+ export interface TypeDefinitionRegistrationOptions extends TextDocumentRegistrationOptions, TypeDefinitionOptions, StaticRegistrationOptions {
35
24
  }
36
25
  export interface TypeDefinitionParams extends TextDocumentPositionParams, WorkDoneProgressParams, PartialResultParams {
37
26
  }
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "vscode-languageserver-protocol",
3
3
  "description": "VSCode Language Server Protocol implementation",
4
- "version": "3.15.0-next.8",
4
+ "version": "3.15.0-next.9",
5
5
  "author": "Microsoft Corporation",
6
6
  "license": "MIT",
7
7
  "repository": {
@@ -15,14 +15,14 @@
15
15
  "main": "./lib/main.js",
16
16
  "typings": "./lib/main",
17
17
  "dependencies": {
18
- "vscode-jsonrpc": "^4.1.0-next.3",
19
- "vscode-languageserver-types": "^3.15.0-next.4"
18
+ "vscode-jsonrpc": "^5.0.0-next.2",
19
+ "vscode-languageserver-types": "^3.15.0-next.5"
20
20
  },
21
21
  "scripts": {
22
22
  "prepublishOnly": "npm run clean && npm run compile && npm test",
23
23
  "postpublish": "node ../build/npm/post-publish.js",
24
- "compile": "node ../build/bin/tsc -p ./tsconfig.json",
25
- "watch": "node ../build/bin/tsc -w -p ./tsconfig.json",
24
+ "compile": "node ../build/bin/tsc -b ./tsconfig.json",
25
+ "watch": "node ../build/bin/tsc -b ./tsconfig.json -w",
26
26
  "test": "node ../node_modules/mocha/bin/_mocha",
27
27
  "clean": "node ../node_modules/rimraf/bin.js lib",
28
28
  "preversion": "npm test"