Maxime Mangel
Maxime Mangel
Oops, I though I had provided a reproduction code for this issue but I think I made the Gitpod template and stopped here 🤣 I will, provide a reproduction code...
Here is a reproduction repository https://github.com/MangelMaxime/fable-2907-reproduction Both Vite and Webpack are setup with a plugin visualize. You can run `./build.sh BuildVite` or `./build.sh BuildWebpack` depending on which one you want...
Indeed perhaps but I don't think this will allow fable-splitter to copy/paste the files that the user code imported. For example, if he wrote a `.ts` or `.js` file manually...
Should we add the possibility to support different representation for the types? (see #57) It should already be possible to use "override of the standard decoder" with a `Decode.oneOf` in...
Add a way to not crash the encoder/decoding process if no coder is found a type. This is need for Elmish.Debugger, because people can store anything in their model and...
@njlr It will never be as performant as the native `JSON.parse` because we are calling it and then checking the validity of the JSON data.
Today I read [this article](https://einarwh.wordpress.com/2020/05/08/on-the-complexity-of-json-serialization/) and it made me think once again about how we deal with JSON. ------------ I never was a big fan of the `Auto` modules. The...
Thank you for sharing @alexswan10k And I do agree, if auto-coders are to be kept during the big rewrite they will have to go in a separate package. Edit: I...
Today, I started prototyping the next version of Thoth.Json. I wanted to check if my idea of using an interface to abstract the implementation details about which JSON parser is...
Hum, I am facing a problem... I had to use a generic `'JsonValue` in order to make the implementation parser agnostic but the generic need to propagate in the outer...