thscott
thscott
As package.json supports more and more features, surely it makes sense to be able to document the configuration alongside it, without resorting to messy hacks? What brought me here was...
> Until node offers a built-in way to serialize and unserialize JSON5 in all active release lines, it would be a disaster if npm adopted it, since tooling wouldn't be...
> The number of tools which read from `package.json` and do not support the other formats is massive. @TheJaredWilcurt was directing addressing this point. Tools that read from package.json will...
With only the YAML extension installed, this is what I see:  This extensions gets its schemas from a catalogue, for which the default is https://www.schemastore.org/api/json/catalog.json. This in turn points...
Came back to working with AppSync resolvers recently, and almost immediately ran into this again. I had code similar to: ```typescript function pickDefined(obj: T) { return (Object.keys(obj) as (keyof T)[]).reduce((outObj,...