We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I have an index.ts file that exports a types.d.ts file. However, that types file still gets flagged as unused.
index.ts
types.d.ts
export type * from './types' export * from './context' export * from './provider' export * from './use'
For now, my workaround is to exclude **.d.ts but that shouldn't really be necessary.
**.d.ts
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I have an
index.ts
file that exports atypes.d.ts
file. However, that types file still gets flagged as unused.For now, my workaround is to exclude
**.d.ts
but that shouldn't really be necessary.The text was updated successfully, but these errors were encountered: