rescript-compiler
rescript-compiler copied to clipboard
The compiler for ReScript.
Currently there is no way to use Map or Set with rescript natively, alternatively we have to use some library like [rescript-js](https://github.com/bloodyowl/rescript-js) or write our own bindings, I think they...
Right now it is hard to interop with typescript or flow when using "Belt" utilities, we have to manually write definition files to use them in shim files. If the...
https://github.com/Microsoft/TypeScript/wiki/Using-the-Compiler-API using the typescript compiler to emit bindings in a semi-automatic way, note that it is very hard to make this fully automatic, I would expect generate some ocaml templates...
see #2758 This PR is just throwing some ideas so that the least controversial API could be added. It would be nice that people could take the ownership of the...
The evaluation order is undefined in ocaml
This has been mentioned a couple of time. Not having this causes serious issues if both Typescript and rescript are present in a codebase and there exist modules with the...
`[email protected]` Can't use `[bs.unwrap]` with labeled arguments. ### Code ``` [@bs.obj] external func : ( ~param: string, ~polyParam: [@bs.unwrap] [ | `Str(string) | `Int(int)], unit ) => _ = "";...
I have a reasonml/reason-react project that compiles ok with bs-platform 8.4.2. First step is I want to upgrade compiler to rescript 9.1.4. After updating dependencies I do a `yarn rescript...
> Opening this issue for tracking purposes and discussion 🗣 ## Context Documenting a project that builds with `bsb` right now is a fragmented experience. You can use: 1. `docre/redoc`,...
We had a case in the ReasonConf US 2019 website where we wanted to codify some SVG in a React component. It's a very complex SVG with a lot of...