Jake Lazaroff
Jake Lazaroff
Right now, Radish does a couple things that make the HTML authoring experience nicer: - HTML files are automatically nested in folders for nicer routing. For example, if a page...
Service workers can pre-populate their cache on install ([MDN docs](https://developer.mozilla.org/en-US/docs/Web/API/Service_Worker_API/Using_Service_Workers#install_and_activate_populating_your_cache). It would be nice if Radish generated a service worker that pre-cached entire pages and their assets, controlled by the...
**Describe the bug** `.exhaustive` returns a false negative type error when matching an enum. **Code Sandbox with a minimal reproduction case** https://codesandbox.io/s/focused-chatterjee-exp2m **Versions** - TypeScript version: 4.3.2 - ts-pattern version:...
Hi! Just tried out Solid Start and had trouble setting up the project because of a `degit`-related zlib error. I dug around and found [an open bug report in the...
Since [TypeScript can't typecheck tagged template strings](https://github.com/microsoft/TypeScript/issues/29432), I've been compiling my code using [babel-plugin-htm](https://www.npmjs.com/package/babel-plugin-htm) and running TypeScript on the output. That works pretty well, with one big exception: omitting the...
Using weird casing in overridden elements doesn't replace them. Possibly related to https://github.com/probablyup/markdown-to-jsx/pull/247 Example: ```jsx import React from "react"; import ReactDOM from "react-dom"; import Markdown from "markdown-to-jsx"; function CustomInput() {...
Since diving into Preact and `@preact/signals`, I find they're actually much nicer with _class components_ than functional components — so much so that I'm not using hooks at all. Unfortunately,...