We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5278c6 commit 4cb902dCopy full SHA for 4cb902d
src/compiler/program.ts
@@ -3862,7 +3862,8 @@ export function createProgram(_rootNamesOrOptions: readonly string[] | CreatePro
3862
// Force the inclusion of ES6 and DOM's iterable libs.
3863
switch (libFileName) {
3864
case "lib.dom.d.ts":
3865
- names.push("lib.dom.iterable.d.ts", "lib.dom.asynciterable.d.ts");
+ names.push("lib.dom.iterable.d.ts");
3866
+ // TODO: auto add dom.asynciterable.d.ts in es2018?
3867
break;
3868
case "lib.es5.d.ts":
3869
names.push("lib.es2015.d.ts");
0 commit comments