Results 42 comments of

@MichalLytek Publishing this helpers as a npm package is a good idea. Do you think `type-graphql-transformation` is a good name?

I'm having the same problem, I'm currently using [tsc-alias](https://github.com/justkey007/tsc-alias) as an alternative.

This is because ``tsconfig.json`` does not conform to the validation rules of [react-scripts](https://www.npmjs.com/package/react-scripts). Until react-scripts [changes the validation rules](https://github.com/facebook/create-react-app/pull/10014), this is my solution: 1. Create ``tools/fix-alias.js`` as follows: ```js /*...

@julix-unity To disable the warning, Replace [line 159](https://github.com/facebook/create-react-app/blob/428ddb683193e548043a4a7edac73d2857386a4c/packages/react-scripts/scripts/utils/verifyTypeScriptSetup.js#L159) to a comment

I have a more radical idea: # variable delegated syntax Add [delegated-properties](https://kotlinlang.org/docs/delegated-properties.html) from `kotlin` for best development experience. ```JavaScript let counter by new Signal.State(0); const isEven by new Signal.Computed(() =>...

@fabian-hiller Thank you! I think metadata is an essential feature, and both [yup](https://github.com/jquense/yup?tab=readme-ov-file#schemametametadata-schemametadata-schema) and [zod](https://zod.dev/?id=describe) support it. Do you think metadata needs to be discussed in more depth in terms...

@fabian-hiller I would like to help with this refactoring. I've completed `trimEnd` and `trimStart` at https://github.com/fabian-hiller/valibot/pull/511 .

I have completed `upperCase` and `lowerCase` at https://github.com/fabian-hiller/valibot/pull/513

@fabian-hiller You're absolutely right. Over the past few days, I've built the [valibot-mikro](https://github.com/xcfox/valibot-mikro) library for building mikro entities with the help of valibot. What I'm doing now is disguising metadata...

I also noticed that not every schema can accept pipe arguments, such as `recursive()`, `enum_()`, `picklist()`. I understand that these schemas include validation by themselves and may not need an...