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

Barrelled exports are not using export type-only in Typescript client #2773

Open
tomtobac opened this issue Jan 16, 2024 · 3 comments
Open
Assignees
Labels
language/typescript product/sdk-generator Fern's SDK Generator that outputs client libraries in 7 languages

Comments

@tomtobac
Copy link

tomtobac commented Jan 16, 2024

Describe the bug

Nextjs forces --isolatedModules and whenever we generate our typescript-sdk and try to import it from our monorepo it crashes on build time.

Type error: Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'.

> 1 | export { ChatStreamRequest } from "./ChatStreamRequest";
    |          ^
  2 | export { ChatRequest } from "./ChatRequest";

Expected behavior
It should export interfaces using type-only imports

export type { ChatStreamRequest } from "./ChatStreamRequest";
export type { ChatRequest } from "./ChatRequest";

Versions

  • Fern CLI: 0.16.25
  • Generator: 0.9.0 (fernapi/fern-typescript-node-sdk)
@dsinghvi
Copy link
Member

Oh interesting -- @tomtobac thanks for this issue!

@dannysheridan dannysheridan transferred this issue from another repository Jan 24, 2024
@dannysheridan dannysheridan changed the title [Bug] Barrelled exports are not using export type-only [Bug] Barrelled exports are not using export type-only in Typescript client Jan 24, 2024
@dsinghvi
Copy link
Member

@tomtobac did you get around this?

@brentshulman-silkline
Copy link

@tomtobac did you get around this?

I have the same issue

@dannysheridan dannysheridan changed the title [Bug] Barrelled exports are not using export type-only in Typescript client Barrelled exports are not using export type-only in Typescript client Dec 14, 2024
@dannysheridan dannysheridan removed the bug label Feb 6, 2025
@dannysheridan dannysheridan added the product/sdk-generator Fern's SDK Generator that outputs client libraries in 7 languages label Mar 3, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
language/typescript product/sdk-generator Fern's SDK Generator that outputs client libraries in 7 languages
Development

No branches or pull requests

5 participants