rescript-schema
rescript-schema copied to clipboard
🧬 The fastest parser in the entire JavaScript ecosystem with a focus on small bundle size and top-notch DX
with `"rescript-schema": "^8.0.1",`, and `import * as S from "rescript-schema";`, `S.recursive` doesn't seem to be there I can use all other methods though, except .recursive
This may be a bit early as there is not even a first alpha version of ReScript 12 out yet, but I wanted to give you a heads-up already. It...
Hello, We encounter errors on MacOS with intel ships This PR add ppx build for x64 architecture on MacOS in the CI
I'd like to able to collect the remaining object fields into a `Dict` that can be put in the output rather than being stripped out. It'd also be nice to...
Based on my experience with complex types and other libraries, I would prefer to maintain my type definitions separate from the Rescript Schema schema definitions. However, I obviously need to...
I think it's related to "S.merge" accepting only plain object schemas (e.g no unions, no primitives): ``` const integerSchema = S.refine(S.number, (value, s) => { if (value % 1 !==...