Remove extraneous const, fixing #25714 (#25982) (#25984)

This commit is contained in:
Wesley Wigham
2018-07-26 16:40:30 -07:00
committed by GitHub
parent 45e44403cc
commit afef668a19
5 changed files with 169 additions and 1 deletions

View File

@@ -154,7 +154,7 @@ namespace ts {
if (node.kind === SyntaxKind.Bundle) {
isBundledEmit = true;
const refs = createMap<SourceFile>();
refs = createMap<SourceFile>();
let hasNoDefaultLib = false;
const bundle = createBundle(map(node.sourceFiles,
sourceFile => {