Avin
Avin
Along with the interface extraction going on for v2, I think it would be a good idea to expose an ASP NET friendly service registration API that fits in to...
> "Require modules first, not inside functions" This causes the module to be loaded optimistically when the scripts are loaded, which increases the boot time of the app. In cases...
I think it would be good to have these functions generically typed. If we know the shape of the payload, we can pass it here and get better type completion....
Would be good to have class names based on the full object path for styled components declared inside objects. i.e., ```tsx // Product.tsx const Wishlist = { Wrapper: styled` `...
I use the SplitChunkPlugin to optimize my bundles. Since it splits a single entry point over multiple bundles, the total stat, parsed and gzipped sizes are not that helpful for...
I want to check the type of a parameter of a function and navigate to the declaration if it's within the local project. So far I've gotten the type with,...
I would like to add an abstraction layer and decouple this from any particular redis implementation. That way bee-queue can be used with both `node-redis` and `ioredis`
Is there a similar library for chosing between `a` and `an` given a word?
@Hookyns check [this](https://stackblitz.com/edit/tst-reflect-issue-49-kdukpz?file=index.js) out. Tried to run under `type: "module"` and got require is not defined.
This doesn't work, ```ts @entity export class Cat { id = 0 toys: Toy[] = [] } @entity export class Toy { id = 0 } const type = getType()...