Results 14 comments of Quinn Rohlf

Possibly helpful - I solved this in @qrohlf/GifHub by including up a minimal play/pause UI. It's licensed under the WTFPL, so you're free to pull in in and use it...

@taion unless I'm mistaken, popover margins are a seperate issue from this ticket which is talking about target element margins. I've taken a stab at fixing the issue with *target...

Oops, thanks for the reminder Matt. This fell off my radar. On Tue, Apr 26, 2022 at 10:24 AM Matt Lyon ***@***.***> wrote: > I just wasted a bunch of...

It looks like this was actually the previous behavior of TSC at some point, interestingly enough: https://github.com/microsoft/TypeScript/issues/7238 Agree that having this as an option would make using tsc with monorepos...

As far as I can tell, the main thing that would need to change is https://github.com/microsoft/TypeScript/blob/d8e81bbf6e6614bab7a0c5fba1e88a173943d22d/src/compiler/program.ts#L659 and https://github.com/microsoft/TypeScript/blob/d8e81bbf6e6614bab7a0c5fba1e88a173943d22d/src/compiler/watch.ts#L356 In order to support absolute path outputs in build and watch mode.

I've got my own, similar, wrapper script to `tsc` that we're using at our organization as a workaround. However, it's becoming such a common use case that I would love...

The primary use-case for myself and several other users in this thread is having support for Github Actions' [problemMatcher functionality](https://github.com/actions/toolkit/blob/main/docs/problem-matchers.md), which uses a regex to extract error file paths, severity...

I believe this can be considered resolved, now that numeric IDs are accepted! Also, for anyone above that's run into this type of issue recently - just use TypeScript, it's...

Couple of things: 1. In your .env-example, you've copy-pasted the git diff instead of the actual file. As a result, a " -" has been added to the start of...

This may also apply to width/height/etc. Bugfix will be to define some sane constraints for how large/small each value can be and then throw an exception if arguments are invalid...