I'm trying to load up a Map[String, Any] from the config file. It's currently written like this
map-name {
stringValue = "firstValue"
intValue = 1
booleanValue = true
}
Pureconfig is having trouble reading this config as a Map[String, Any]. It only works if replace Any with some strict type but I want more flexibility than this.
Is there any way around this?