-
Introduce Rewatch instead of Ninja to improve monorepo support.
-
Hey!
I'm trying to build an old project of mine, after upgrading it to Rescript 11, I had to change some things but everything seemed fine until I got this error:
```
FAILED: src/Menu.ast
dyld…
-
Hello !
Since we updated Rescript to v11 (without uncurried mode), we've got errors from the compiler :
```Fatal error: exception File "jscomp/core/js_dump.ml", line 828, characters 29-35: Asser…
-
When I compile rescript into JavaScript and have Node.js run it, I found that the `@rescript/core`was not set as a esmodule. When I manually changed the `package.json` in the `core` to `type: module`,…
-
I would like to initiate a discussion on a potential feature: Preserve Mode for JSX expressions. The Preserve Mode is a functionality that, when enabled, maintains the original formatting and structur…
-
### How do you envision this feature/change to look/work like?
User can create UI component using the `.res` file extension, which get compiled using https://rescript-lang.org/
### What is the purpo…
-
HI,
I am a little new to Rescript. I am trying to reproduce the example in your README in Rescript. This is as far as I got:
```rescript
module Option = {
let let_ = Belt.Option.flatMap
}
ty…
-
Seems that the Rescript team is going to remove Belt from the Rescript compiler and language([see](https://github.com/rescript-lang/rescript-compiler/pull/6467)), I suggest moving forward to rescript-…
-
```res
// ABC.resi
type a = X | Y0
```
```res
// ABC.res
type a = X | Y
```
The compiler failed to compile and show the message as below:
```
rescript: [3/3] src/ABC.cmj
FAILED: src/ABC.cmj…
-
We can't use Math.min/max for bigint values.
If the rescript code is simple enough,
```res
let a = 5n
let b = 7n
let c = max(a,b)
```
the compiled js is simple too:
```js
var c = 5n > 7n …