Dmitry

Results 38 issues of Dmitry

I am heavily use types, and most of my `Record` inputs are typed with generic keys, so i really miss this feature. I was forced to use `Object.create(null)` because otherwise...

Fixes https://github.com/ivanhofer/typesafe-i18n/issues/756. ### Key Change: - Addition of `"type": "module"` in `package.json`. ### Issue Background: - The problem arises due to TypeScript's reliance on the `package.json` `type` field to determine...

### Version 5.26.2 ### Describe the bug I just made initial setup of `typesafe-i18n`, trying to build my project now and stumbled into 3 TS errors ``` node_modules/typesafe-i18n/runtime/esm/runtime/src/index.d.ts:1:15 - error...

bug

### Version 5.26.2 ### Describe the bug I'm sorry for the screenshot, but i can't just copy the value – bug disappears. Here we can see that comment for `TranslationFunctions`...

bug

### Discussed in https://github.com/ivanhofer/typesafe-i18n/discussions/753 Originally posted by **dilame** December 18, 2023 In russian, we have 3 forms of plurals. And there is no way to describe it with `typesafe-i18n`. ```js...

Hello @lingui/core enthusiasts! I'm thrilled to introduce a groundbreaking enhancement that's set to transform your experience with the `i18n.t()` function. This PR is all about injecting steroids into type safety,...

### Describe the bug After upgrading to [email protected] a get compilation error ``` node_modules/rxjs/dist/types/internal/types.d.ts:261:42 - error TS2552: Cannot find name 'ReadableStream'. Did you mean 'ReadableStreamLike'? 261 export type ReadableStreamLike =...

### Describe the bug Expand operator have wrong typings of `project` function. From the description it `applies the projection function to every source value as well as every output value`,...

I encountered an unexpected behavior in Zod's type inference system when using z.unknown(). The issue arises when defining an object schema with a field that should be required, but the...

bug-confirmed

You got extraneous typings, it is possible to auto-infer function return type, but you are forcing users to manually specify it in generics. I know how to make it right,...