Chris Thomas
Chris Thomas
I noticed that nothing is shown if you have a `.tsx` file selected.
A couple more improvements  Better syntax highlighting when using generics (currently using the `Babel JavaScript` "language") Cmd + clicking on the import path, should jump to the file. Currently...
I just grabbed `1.24.0` and `pick` from `es-toolkit/compat` still adds the `undefined`
I just ran into the same thing. Downgrading `@swc/core` to `1.3.71` made it work, so it looks like there was a compatibility break somewhere.
Related to this, I just got this since my module was returning a fixed set of static string. You most likely just need to change the representation to a string...
This is great From a Typescript perspective I prefer unions of string literal over enums. Its generally closer to what I tend to use, as enums in typescript are weird
Javascript itself doesn't support enums, the closest thing that it has is an object. Typescript adds some semantic sugar to support them, but it still gets turned into an object...
> Note that enums need a name, a set of string values, a description for the enum and a description for each value. A union of literals doesn't give you...
A description could be constructed from the values of the union, but I understand what you mean. And I do also understand that the majority of your users are in...
> That's not necessary because with Dagger it doesn't matter which language you choose. It's not specifically about Go, just that there's other languages and they all interact with each...