Martin Adámek
Martin Adámek
Maybe it would be enough if there is a callback I could use to adjust the generated sidebar.
Thanks for implementing this. Apparently there is one gotcha - changing the order can result in differences in how typedoc sees the references. I understand it is more of a...
> One thought I had is to just not include the @scope. Please make this configurable, removing the scope may sounds like a good idea, but not all monorepos have...
Looks like I am hitting this as well. It happens only when doing coverage (as it eats more memory), and it ends up with hard failure. Locking node version to...
Agreed the batching is not really described anywhere (and it is quite a killer feature). Just use EM/UoW and it will work automatically. All operations are batched by default, even...
Wow, thanks for the detailed description. I must say I was recently thinking about something similar (as nextras orm, one of my inspirations, is actually doing the same afaik), although...
Is that valid sql? I guess pg only? Aliases are supported only for select queries, and that is intentional, not a bug.
I believe we have a single hydration functions for this, and in general everything is processed in the same way, just the entity class is picked based on the discriminator....
How do you expect this to work? Adding a bool flag ti handle it in db level is one thing, but what about consistency of the entities in memory? Anyway,...
Sounds like you might be better off with using the driver directly (`em.getDriver().nativeInsertMany()`), where we could add a flag for [unordered batch inserts](https://stackoverflow.com/questions/34153058/mongodb-multi-document-insert-ignore-custom-duplicate-field-error), as those should ignore duplicate errors and...