Thomas Bandt

Results 4 issues of Thomas Bandt

Hi everyone, This is a big one, but if anyone is wondering if someone would use that tool on macOS: Yes, here 🖐️. We are using LiteDB in a couple...

enhancement

I would like to get rid of the console warning which is provided when tracking on localhost is disabled (*). Ideally it should be possible to disable it through the...

enhancement

Since reading [that post](https://www.reddit.com/r/javascript/comments/c8drjo/nobody_talks_about_the_real_reason_to_use_tabs/) I've been certain to start new codebases with tabs instead of spaces (which I personally did prefer all the time). Until I realized that that's not...

area: tooling

I propose we implement something like what's known as [Literal Types in TypeScript](https://www.typescriptlang.org/docs/handbook/2/everyday-types.html#literal-types): ```ts const foo = (bar: "A" | "B") => {} foo("A"); // ok foo("C"); // forbidden ```...