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 64f46ac commit 0263f06Copy full SHA for 0263f06
src/index.ts
@@ -159,7 +159,7 @@ const transformer = (_: ts.Program) => (context: ts.TransformationContext) => (
159
visitNamedExports as any,
160
ts.isNamedExports
161
);
162
- return node.exportClause === exportClause || exportClause
+ return node.exportClause === exportClause || exportClause || isDeclarationFile
163
? ts.updateExportDeclaration(
164
node,
165
node.decorators,
tests/__fixtures/core/index.ts
@@ -1,4 +1,5 @@
1
export { sum } from "@utils";
2
+export { NoRuntimecodeHere } from "@utils/types-only";
3
import { subs, NoRuntimecodeHere } from "@utils";
4
import "@circular/b";
5
import { A } from "@circular/a";
0 commit comments