Skip to content

Commit baeedab

Browse files
Accepted LKG
1 parent b3ac765 commit baeedab

14 files changed

+10999
-5563
lines changed

lib/lib.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ interface ObjectConstructor {
236236
* Returns the names of the enumerable properties and methods of an object.
237237
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
238238
*/
239-
keys(o: any): string[];
239+
keys(o: {}): string[];
240240
}
241241

242242
/**

lib/lib.es2015.symbol.wellknown.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ interface Map<K, V> {
130130
readonly [Symbol.toStringTag]: "Map";
131131
}
132132

133-
interface WeakMap<K extends object, V>{
133+
interface WeakMap<K extends object, V> {
134134
readonly [Symbol.toStringTag]: "WeakMap";
135135
}
136136

lib/lib.es5.d.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ interface ObjectConstructor {
236236
* Returns the names of the enumerable properties and methods of an object.
237237
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
238238
*/
239-
keys(o: any): string[];
239+
keys(o: {}): string[];
240240
}
241241

242242
/**

lib/lib.es6.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ interface ObjectConstructor {
236236
* Returns the names of the enumerable properties and methods of an object.
237237
* @param o Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.
238238
*/
239-
keys(o: any): string[];
239+
keys(o: {}): string[];
240240
}
241241

242242
/**
@@ -5689,7 +5689,7 @@ interface Map<K, V> {
56895689
readonly [Symbol.toStringTag]: "Map";
56905690
}
56915691

5692-
interface WeakMap<K extends object, V>{
5692+
interface WeakMap<K extends object, V> {
56935693
readonly [Symbol.toStringTag]: "WeakMap";
56945694
}
56955695

lib/protocol.d.ts

+8-1
Original file line numberDiff line numberDiff line change
@@ -714,7 +714,7 @@ declare namespace ts.server.protocol {
714714
/**
715715
* An array of span groups (one per file) that refer to the item to be renamed.
716716
*/
717-
locs: SpanGroup[];
717+
locs: ReadonlyArray<SpanGroup>;
718718
}
719719
/**
720720
* Rename response message.
@@ -953,6 +953,12 @@ declare namespace ts.server.protocol {
953953
* Compiler options to be used with inferred projects.
954954
*/
955955
options: ExternalProjectCompilerOptions;
956+
/**
957+
* Specifies the project root path used to scope compiler options.
958+
* It is an error to provide this property if the server has not been started with
959+
* `useInferredProjectPerProjectRoot` enabled.
960+
*/
961+
projectRootPath?: string;
956962
}
957963
/**
958964
* Response to SetCompilerOptionsForInferredProjectsResponse request. This is just an acknowledgement, so
@@ -1922,6 +1928,7 @@ declare namespace ts.server.protocol {
19221928
paths?: MapLike<string[]>;
19231929
plugins?: PluginImport[];
19241930
preserveConstEnums?: boolean;
1931+
preserveSymlinks?: boolean;
19251932
project?: string;
19261933
reactNamespace?: string;
19271934
removeComments?: boolean;

lib/tsc.js

+870-653
Large diffs are not rendered by default.

lib/tsserver.js

+2,381-1,150
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)