It would be nice if comments in json files would be supported so a file like this: ```jsonc { // We choose this awesome value "a": "value for key A" } ```` Would generate a dictionary like: ```julia Dict("a" => "value for key A") ``` Alternatively we could support the [JSON5](https://json5.org/) standard
It would be nice if comments in json files would be supported so a file like this:
{ // We choose this awesome value "a": "value for key A" }Would generate a dictionary like:
Alternatively we could support the JSON5 standard