Results 593 comments of Stephen Haberman

Hi @brudil ; yep, I haven't done a ton of thinking around this, other than that the current setup works but should definitely be fancier/more robust. I.e. right, to limit...

Ah yep...that `tsp`-should-be-`tsp_b0` should be fixed by #723.

We've a version of this now via #1093 where you can filter to subtype-specific fields like: * `em.find(Author, { publisherLargePublisher: { country: "US" } })` Where the pattern is: *...

Nice--I had thought of a syntax, extremely similar, like: ``` const author = await em.findOne( Author, {}, { populate: { // Poly on Book | Blogpost | Article latest: {...

Interesting example where both the `ITI`s returned from the `variantsOfItem` hint but also the "this" `iti` itself, both would need to be reactive: ``` readonly variantsAndSelf: Collection = hasManyDerived("variantsOfItem", {...

Hey! Coincidental timing! I was just thinking of this over the weekend, as I've had about ~3 (failed) attempts to get Joist's test suite running on vitest, and after this...

I added an `importExtension` flag to ts-poet as a guess of what would be useful to drive conditional sometimes `*.js` / sometimes `*.ts` / sometimes extension-less output: https://github.com/stephenh/ts-poet/pull/49/files

Great update @brudil ! Amazing to hear you got it working, albeit after a good bit of elbow grease. :grimacing: :-) > type-graphql which requires the emitDecoratorMetadata feature Ah! That...

> tsconfig paths completely removed now Ah hey that's great! We'll plan on moving over to it too then, at some point...

Huh! Looks like "time without time zone" is just hour-minute-second-milli? This is probably a `PlainTime`: https://tc39.es/proposal-temporal/docs/#Temporal-PlainTime I've been really tempted to ignore the "this is only stage 3 / don't...