Maxime Mangel

Results 1077 comments of Maxime Mangel

> PS: What is the `--fableLib ` command you give to configure that you want to use fable-library from NPM? Then I can try to keep the syntax similar if...

I am not familiar with the portion of Fable code which handle these optimisation. It is possible that the optimisation are done by FCS itself in which case I don't...

It should be possible yes. Only specificities of `ResizeArray` is that's the type we use to ensure that we generate a native JavaScript array. But changing the getter / setter...

I feel like I have a similar issue when using a "default command". **Main file** ```fs module CommitLinter.Main open Spectre.Console.Cli open CommitLinter.Commands [] let main args = let app =...

> I would suggest doing separate PRs, I agree this PR will need to be split because locally I have even more different fixes for others part of Fable because...

There are also cases where the code generate an intermediate variable: ```fs let nullableTestFailing (s: Nullable) = // Fails because we don't have a type guard s != null s.Value.ToString()...

My way to mitigate the issue is by using this config (this is for Nvim + Lazy) ```lua { "ionide/ionide-vim", config = function() vim.g["fsharp#lsp_codelens"] = 0 vim.api.nvim_create_autocmd({ "BufEnter", "InsertLeave" },...

Hello, If the above improve the current situation and don't break anything personally I am ok with adding it.

We should indeed add support for React 19, however I still can't find information on what the expected JavaScript is. All the documentation, I find are using JSX syntax but...

I think the easiest way to see if something is broken or not would be for someone to upgrade to React 19 and we will see if React complains or...