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

Regression in 4.5.1: Global namespace type declarations are removed #419

Open
3 tasks done
roman-petrov opened this issue Mar 13, 2025 · 4 comments
Open
3 tasks done

Comments

@roman-petrov
Copy link

roman-petrov commented Mar 13, 2025

Use case

We provide Jest custom matchers with our package and provide TypeScript type definitions too. As I know the only way to extend Jest matchers is to extend global jest namespace like this:

declare global {
  namespace jest {
    interface Matchers<R> {
      toChildSnapshot: (filename: string, name: string) => R;
    }
  }
}

This approach is officially documented in Jest documentation:

Image

The problem

Before 4.5.1 release the plugin included such declarations in generated declaration code "as is", after 4.5.1 release these declarations just dropped.

Not sure, but this commit in 4.5.1 release might be the source of this problem.

I am not familiar with StackBlitz and it's a bit hard for me to create a complete reproduction link for this. I think the reproduction should be quite easy, just include the code above into any TypeScript flle.

Reproduction

n/a

Steps to reproduce

No response

System Info

n/a

Validations

fengelniederhammer added a commit to GenSpectrum/dashboard-components that referenced this issue Mar 24, 2025
…icElements namespace declarations

In the last dependency update (#818), `vite-plugin-dts` was upgraded from 4.5.0 to 4.5.3.
After that, our JSX.IntrinsicElements declarations (e.g. this one: https://github.com/GenSpectrum/dashboard-components/blob/0c7d6cab120e59295db70495b4467b4c1e463dae/components/src/web-components/gs-app.ts#L110-L117)
were not included in the built output anymore (in `dist/components.d.ts`).
Thus, the typecheck in the dashboards failed, claiming that e.g. `gs-app` is not a valid JSX component name.
4.5.0 is the last version that works.

qmhc/vite-plugin-dts#419 seems to be the exact same issue.
fengelniederhammer added a commit to GenSpectrum/dashboard-components that referenced this issue Mar 24, 2025
…icElements namespace declarations

In the last dependency update (#818), `vite-plugin-dts` was upgraded from 4.5.0 to 4.5.3.
After that, our JSX.IntrinsicElements declarations
(e.g. this one: https://github.com/GenSpectrum/dashboard-components/blob/0c7d6cab120e59295db70495b4467b4c1e463dae/components/src/web-components/gs-app.ts#L110-L117)
were not included in the built output anymore (in `dist/components.d.ts`).
Thus, the typecheck in the dashboards failed, claiming that e.g. `gs-app` is not a valid JSX component name.
4.5.0 is the last version that works.

qmhc/vite-plugin-dts#419 seems to be the exact same issue.
@fengelniederhammer
Copy link

I saw the same issue. Downgrading to 4.5.0 "solved" it: GenSpectrum/dashboard-components#828

It would be great if you could make sure that global namespace declarations make it the .d.ts files again!

fengelniederhammer added a commit to GenSpectrum/dashboard-components that referenced this issue Mar 24, 2025
…icElements namespace declarations (#828)

In the last dependency update (#818), `vite-plugin-dts` was upgraded from 4.5.0 to 4.5.3.
After that, our JSX.IntrinsicElements declarations
(e.g. this one: https://github.com/GenSpectrum/dashboard-components/blob/0c7d6cab120e59295db70495b4467b4c1e463dae/components/src/web-components/gs-app.ts#L110-L117)
were not included in the built output anymore (in `dist/components.d.ts`).
Thus, the typecheck in the dashboards failed, claiming that e.g. `gs-app` is not a valid JSX component name.
4.5.0 is the last version that works.

qmhc/vite-plugin-dts#419 seems to be the exact same issue.
@RWhitelockForbesAdvisor

Same here, I too have had to pin to 4.50

@qmhc
Copy link
Owner

qmhc commented Mar 25, 2025

Would you try to use the latest version(4.5.3) current?

@roman-petrov
Copy link
Author

@qmhc I just tested four package versions with these global namespace types:

  • 4.5.0 - everything is ok
  • 4.5.1 - regression, drops global namespace types
  • 4.5.2 - regression not fixed
  • 4.5.3 - regression not fixed

So, as I noted in issue description, the regression happened in v.4.5.1 and it is still there.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants