Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Correctly handle export import x = #16566

Merged
merged 1 commit into from
Jun 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions packages/babel-plugin-transform-typescript/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ export default declare((api, opts: Options) => {
path: NodePath<t.TSImportEqualsDeclaration>,
pass,
) {
const { id, moduleReference } = path.node;
const { id, moduleReference, isExport } = path.node;

let init: t.Expression;
let varKind: "var" | "const";
Expand All @@ -626,9 +626,12 @@ export default declare((api, opts: Options) => {
init = entityNameToExpr(moduleReference);
varKind = "var";
}
const newNode = t.variableDeclaration(varKind, [
t.variableDeclarator(id, init),
]);

path.replaceWith(
t.variableDeclaration(varKind, [t.variableDeclarator(id, init)]),
isExport ? t.exportNamedDeclaration(newNode) : newNode,
);
path.scope.registerDeclaration(path);
},
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import * as joint from '@joint/core';

export import JGraph = joint.dia.Graph;
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
import * as joint from '@joint/core';
export var JGraph = joint.dia.Graph;
Loading