Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatt Bierner <matb@microsoft.com>2019-12-18 00:40:04 +0300
committerGitHub <noreply@github.com>2019-12-18 00:40:04 +0300
commitee0960b25bb95d129c638e2f2781282ab9e60793 (patch)
tree842bf4d3ec114e2b47b9d9d2f063e3193b5b3029 /src/typings
parent043da28ddaddfda383bc5e4cce7ee972ce482b91 (diff)
Update to use node 12 typings (#85578)
* Update to use node 12 typings Fixes #82514 * Revert es6 promise changes This gets us back to having the duplicate indentifier errors * exclude es6-promise from vscode compile
Diffstat (limited to 'src/typings')
-rw-r--r--src/typings/lib.ie11_safe_es6.d.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/typings/lib.ie11_safe_es6.d.ts b/src/typings/lib.ie11_safe_es6.d.ts
index 43bde6f7c64..547ba246917 100644
--- a/src/typings/lib.ie11_safe_es6.d.ts
+++ b/src/typings/lib.ie11_safe_es6.d.ts
@@ -25,7 +25,7 @@ interface Map<K, V> {
interface MapConstructor {
new <K, V>(): Map<K, V>;
- prototype: Map<any, any>;
+ readonly prototype: Map<any, any>;
// not supported on IE11:
// new <K, V>(iterable: Iterable<[K, V]>): Map<K, V>;
@@ -51,7 +51,7 @@ interface Set<T> {
interface SetConstructor {
new <T>(): Set<T>;
- prototype: Set<any>;
+ readonly prototype: Set<any>;
// not supported on IE11:
// new <T>(iterable: Iterable<T>): Set<T>;