Fix missed tasks to add esnext.weakref (#40981)

Follow up to #38232, based on #33844
This commit is contained in:
Nathan Shively-Sanders
2020-10-07 11:06:04 -07:00
committed by GitHub
parent f34220980b
commit fc783a9000
3 changed files with 4 additions and 2 deletions

View File

@@ -73,7 +73,8 @@ namespace ts {
["esnext.intl", "lib.esnext.intl.d.ts"],
["esnext.bigint", "lib.es2020.bigint.d.ts"],
["esnext.string", "lib.esnext.string.d.ts"],
["esnext.promise", "lib.esnext.promise.d.ts"]
["esnext.promise", "lib.esnext.promise.d.ts"],
["esnext.weakref", "lib.esnext.weakref.d.ts"]
];
/**

View File

@@ -50,6 +50,7 @@
"esnext.intl",
"esnext.string",
"esnext.promise",
"esnext.weakref",
// Default libraries
"es5.full",
"es2015.full",