A. Matías Quezada

Results 15 issues of A. Matías Quezada

Even more than the absolute number it would be useful to see the new cases / recoveries / deaths per day. I might find some time to work on this...

I was wondering why the example code in [Why do we need static analysis](https://hegel.js.org/docs#why-actually-do-we-need-static-analysis) ([Playground](https://hegel.js.org/try#GYVwdgxgLglg9mABAEwKYGdUCcYEMA2MAXqgKqZYAU6UOYA5jMDKsudgFLoICUiA3gChEiCAhqIAtrgCeAIzIVEAXkQcAygHkAcgDoADriyZqtGAyYs2FLrwDcwxE0SVHIqDP2o4wKbIXsWCrKqgBEcHIAVqjQoYgAZPFufvKK2IgAhCGIYCD4+AlJIiKhYLiSqHHmKQFKickeXj41aVi6ZRXBYTR09KGOfELFiFioUCBYSNKpgQ4iAL6OUAAWWHAA7jmomwAqnqgAolhrVKEACmsAbjBoyIgUeIQkdyBKMOhOYJcENxmhPA5FoIxGAJK90qo0A8fiRApRQgAWABM-wcQA)) ```ts function deserializeUser(stringifiedUserJson) { const maybeUser = JSON.parse(stringifiedUserJson); if ( typeof maybeUser === "object" &&...

bug
close after new version

TypeScript has this feature called ["const assertions"](https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-4.html#const-assertions) where we can ask the type system to interpret the values as literal (`1`, `"test"`, `true`...) instead of their type (`number`, `string` and...

duplicate
enhancement

It's all explained on [this comment](https://github.com/amatiasq/karma-cucumberjs/commit/85460fe7b4a1886dbc2dc4fd77aad455168760f1#commitcomment-9277336) The code depends on a race condition. The adapter starting point is executed immediately trusting than karma will have test ready before require's timeout...

I see the app saves all notes in a single file in the repository (so far): `takenote-data/notes.json` I'm sure it works fine for the first months or so but some...

This code fails: ```ts import { z } from "zod"; const Multipliers = [1, 2, 3, 4] as const; const schema = z.enum(Multipliers); ``` With error ``` No overload matches...

wontfix

**Is your feature request related to a problem? Please describe.** Trying to use this with Deno's [Markdown](https://deno.land/x/[email protected]). It doesn't work because this library is asynchronous and that library doesn't accept...

enhancement

I had a rule causing me some trouble so I disabled it. I closed and open the offending file many times but vscode still warning about the disabled rule. It...

I'm trying to use this library with [Vite](vitejs.dev) and that produces this error: ``` 18:39:01 [vite] warning: /Users/foo/vite-test/node_modules/.vite/@uiw_react-markdown-preview.js 11080| } 11081| return _context.abrupt("return", Promise.all(langs.map(function(key) { 11082| return import("prismjs/components/prism-".concat(key)); | ^...

I've been using this library and I love it, but it's confusing to use since it provides no intellisense. I've forked it and refactored to add typescript types to it...