-
Notifications
You must be signed in to change notification settings - Fork 9
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
Add support for packages
entry point strategy
#24
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also I'm seeing an empty "References" section. UPDATE: This weirdness is because there exists phony properties in export interface TypeRecord<T, U, V> {
' _emitterType'?: T;
' _eventsType'?: U;
' _emitType'?: V;
} Gotta figure out how to ignore this stuff 😄 |
Note: |
The reflections generated by I'm going to guess that'd probably require a fair bit of work to sort out, since sidebar items won't be added for each member. The dir structure looks like this:
I wonder if that isn't just plain broken in |
Thanks for the valuable feedback. To address the various points:
As you pointed out, this is indeed due to the extra spaces and this is the expected behavior according to the spec regarding delimiter run:
This should now be fixed:
There is an issue for this in the TypeDoc repository so not much I can do about it from my side. Maybe I should add a note about this in the documentation?
Yeah, this is one entry in my notes regarding that plugin which is not properly handled yet and may require some thinking to get it right. This is not a strategy I use myself but last time I encountered it, I was having issue with the markdown plugin like you mentioned. Once fixed, I think an approach could be in this specific case to no longer rely on Starlight |
re: watch mode, seems like it might be possible get the list of source files out of TypeDoc, then use addWatchFile on each. I don't think TypeDoc has any sort of incremental build, so you'll have to restart it from scratch every time anyway. in theory, a viable workaround, but idk if there are any unintended consequences... |
Anyway, thanks for your work on this! |
No description provided.