-
-
Notifications
You must be signed in to change notification settings - Fork 48
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
Generated types have broken references #145
Comments
It looks like this library is unmaintained. In that case, perhaps you should consider updating its status in the README or archiving the repo. |
It is not, it runs for multiple of my clients in production. If you have a need, feel free to contribute! That’s the beauty of open source. |
I appreciate the work that goes into this library. However, I believe "working in production" is different from "maintained". Those two definitions do not always overlap; in fact, it's common to use unmaintained libraries in production. Given that there have been no commits on |
People are welcome to maintain or add whatever features or improvements they'd like to this library. For my use cases, it works as needed and is running in production for a few clients. The time I invested in building this library was funded by clients who required tailored solutions for their specific needs. I'm not maintaining it for free, I've experienced enough OSS burnout in my career to know my limits :) |
It seems like the types (presumably generated by rollup) in
@table-library/react-table-library/table/Table/index.d.ts
have broken references to modules within this monorepo:unpkg link
The
import("../../types")
expressions should probably be emitted asimport("@table-library/react-table-library/types")
instead.This causes issues with downstream TS compilation:
Environment:
nodeLinker: node-modules
I can work around these by setting
skipLibCheck: true
, but this is a band-aid fix which may cause other legitimate compiler errors to be swallowed, and I do not wish to use that as a long-term solution.The text was updated successfully, but these errors were encountered: