Jonas Damtoft
Jonas Damtoft
I guess this becomes an issue when you have a `Book` with an `Author` and the `Author` has a list of `Book`? Your example above doesn't really showcase an issue,...
You can use https://www.typescriptlang.org/tsconfig#noUncheckedIndexedAccess
This seems to be sort of related to some of the concerns I have brought up over the time with @paldepind. However I mostly agree that it is not overly...
We do sort of fix this issue with our own typescript compiler plugin. https://github.com/funkia/go-notation
All the yield statements will still return `any` with the typescript update, so we can still not infer or typecheck the return value, so it does not help that much.
No, it actually doesn't. It is trying to explain to you how access to `Memory` works :) Essentially, on first access in a tick, it will do a JSON parse...
Couldn't we use `hover` instead of `hoverSettings` to keep in line with `format`? ```ts { format = { enable = true }, hover = { enable = true, showTitle =...
I think it makes sense to set up and configure `nvim-dap` with friends (`nvim-dap-mason`) and some sane keybindings, etc. Then leave it to the user to enable various debug adapters,...
@alexmt Is this repo dead? I could use this + kotlin 1.2 support :+1:
Yeah, probably because `extensions` isn't set. Seems like this code should change as well. https://github.com/n1ru4l/envelop/blob/f9e791e50095e933c2f61d080ef2e7a739d17edb/packages/plugins/sentry/src/index.ts#L100 Should probably be this, to follow the logic of the docs. ```ts const eventIdKey =...