Hello, I have set up a test automation library as ...
# multiplatform
p
Hello, I have set up a test automation library as a mutliplatform project (jvm and js) on the old compiler. Now I wanted to lift the whole thing to the new IR compiler and I am reaching my limits here at the moment. I am not quite clear how to do this. For example I have the whole Config theme in the Common Main inside and only for JS the reading. By switching to the IR compiler, as I understand it so far, I have to transfer everything from the Common Main to the jsMain as well? That would also immediately raise the next question for me. How do you rebuild something like that for the IR compiler correctly?
Copy code
@Serializable
data class FacetteConfigDataClass (
        var http: HttpConfig? = null,
        var kafka: KafkaConfig? = null,
        var database: Map<String, DatabaseConfig>? = null,
        var application: ApplicationConfig? = null,
        var custom: Map<String, String> = mutableMapOf(),
        var web: WebConfig? = null,
        var log: LoggingConfig? = null
)
I hope somebody can help me. Here is the link to the Github Repo: https://github.com/munichbughunter/SevenFacette