sinclairzx81
sinclairzx81
@ssalbdivad Heya, Currently the [Workbench](https://sinclairzx81.github.io/typebox-workbench/) project only supports TypeScript to TypeBox transformation (via compiler transform). Once the TypeScript types are encoded as TypeBox types (with the encoding referred to as...
@florence-wolfe Hi, Unfortunately, there's no simple solution to this. With the exception of Type.Recursive, TypeBox self-referential types are generally not well supported with mapping types (like Index), and lazy types...
@xddq @croconut Hi, Just a heads up. The signature for Ref changed on 0.34.0. The Ref signature was updated to accept a string argument. ```typescript // 0.33.0 const T =...
@HannesOberreiter Hi, try the following. ```typescript const T = Type.Record( Type.String({ pattern: "^A_" }), Type.String({ pattern: "^A_" }), { additionalProperties: false }); ``` Note, when using regular expressions for record...
Closed due to radio silence on this issue.
@BobbyJonas Hi, I would like to do this, but would probably need to overhaul the codegen to achieve. This project was mostly written as a backend for https://sinclairzx81.github.io/typebox-workbench/ which had...
@marcesengel Hi, thanks for this and sorry for the delay here, have been very busy of late (I need to catch up on some of these issues!!). ### Side Effects...
@marcesengel Hi! I'm so sorry for the extended delay on this PR (I've been extraordinarily busy of late) So, I guess the biggest concern here is if downstream tooling observes...
@marcesengel Heya, Hey, thanks again for the PR and the research. I'm going to close this one off for now as this PR has been lingering for a while and...
@Andarist @jakebailey Hello, I have just happened across this issue. As per request, I have setup a repro specifically for TypeBox at the link below: https://github.com/sinclairzx81/typescript-go-issue-929 I should note that...