Fix __importDefault when used on typescript libraries (#51474)

This commit is contained in:
Jake Bailey
2022-11-10 13:57:57 -08:00
committed by GitHub
parent 9eb8bd6c5b
commit 10125e48c0
2 changed files with 4 additions and 2 deletions

View File

@@ -1 +1,2 @@
export * from "./_namespaces/ts";
import * as ts from "./_namespaces/ts";
export = ts;

View File

@@ -15,4 +15,5 @@ if (typeof console !== "undefined") {
};
}
export * from "./_namespaces/ts";
import * as ts from "./_namespaces/ts";
export = ts;