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
{ // We choose this awesome value "a": "value for key A" }