Maxime Mangel
Maxime Mangel
### Description When publishing Fable.Compiler there was a warning/error from NuGet that not symbol packages was pushed along side the standard package. Is this something we should investigate? If not,...
The current implementation of `DateTime.ToString` is incorrect for the javascript target. For example, it considers `T` and `t` format to be the same thing when it isn't in .NET. ###...
### Description I don't know what changed but when running processus in parallels like Vite + Fable, I feel like something has changed. You can see on the video below...
### Description ```fs let d = DateTime(2014, 10, 9, 13, 23, 30, 234, DateTimeKind.Local) ``` generates ```py d: Any = create(2014, 10, 9, 13, 23, 30, 234, 2) ``` ![CleanShot...
### Description Currently `let a = obj ()` generates `b : Any = None` but this cause problem if later user try to set a property on that object. ```fs...
### Description Hello @dbrattli, The last failing test I have in Thoth.Json currently are related to DateTime/DateTimeOffset and I work on a fix for that. While working on it, I...
### Description Hello @dbrattli, The python target seems to be the only to not generates `.fs.py` when `outDir` is not provided. Is there a reason for that or this is...
### Description ```fs [] module User open Fable.Core [] [] type User [] ( firstname: string, surname: string ) = member val firstname: string = jsNative with get, set member...
It would be nice to have auto formatting of the code so we can unify the styling in the project. For F# we can use Fantomas Here is a setting...
### Description ```fs type User = abstract Name : string with get, set [] let main args = let a : User = Fable.Core.PyInterop.createEmpty a.Name str: ... @Name.setter @abstractmethod def...