Jake Bailey
Jake Bailey
> When editors pass filesystem paths to the language server, they're in percent-encoded form which means this issue is not encountered. Hm, but shouldn't we have decoded from URI format...
I don't think the percent encoded thing is actually critical here, but you're definitely correct otherwise.
This is certainly strange. ```ts import { betterAuth } from "better-auth"; import { organization } from "better-auth/plugins"; export const auth = betterAuth({ plugins: [ organization({ async sendInvitationEmail(data) {}, }), ],...
Minimized: ```ts declare const betterAuth: (options: Options) => void; type BetterAuthOptions = { plugins?: ([] | BetterAuthPlugin[]) | undefined; }; type BetterAuthPlugin = { options?: Record | undefined; }; declare...
Oh, huh. Bisect says https://github.com/microsoft/TypeScript/pull/58910, then, which is a backport of a fix you applied to the Go code that was also a fix to a bunch of TS issues...