Fabian Meyer
Fabian Meyer
Sure, I don't think 16.18 needs to happen here. ts4.8 on the other hand should be relatively straightforward to do since it's an exact copy. And I would love to...
> you can still use cookies with the current api, you are able to read set-cookie headers in responses and set cookie headers in requests This is true, though the...
Yet another way to write this (that should be accepted by the linter) is: ```ts if (example?.has(10) === true) { // ... } ``` which is what I usually end...
https://github.com/eslint/eslint/issues/3458 is now available experimentally, but will likely require significant changes to eslint-config-standard-with-typescript
I've implemented a new system for registering fonts statically on the `SVG` class. The font to use for rendering is then automatically chosen as the best match. See PR #191...
@Niellles I think your proposal is reasonable. It's probably important to make the rasterizer configurable, e.g. with an argument, like you propose. Keep in mind that `toRasterImage` already has a...
@ArmorDarks I was not able to verify your claim. Yes, the test runner shows 1 passed test, but that's the run.ts file itself. Try adding more `*.test.ts` files and adding...
I really like the behavior of cert-manager's `Certificate` resource, which allows you to specify labels and annotations for the secret: https://cert-manager.io/docs/usage/certificate/ This then works together with tools like [Reflector](https://github.com/emberstack/kubernetes-reflector#cert-manager-support) such...
The commit message and PR title contain a typo
This will enable interop with TypeScript, right? i.e. ``` node --test --loader=ts-node/esm "test/**/*.ts" ``` Just asking to be sure the requirement on file extensions being .js/.cjs/.mjs is gone after this...