Hello! I’ve updated `Kotlin 1.9.23` to `2.0.0-RC1`...
# multiplatform
g
Hello! I’ve updated
Kotlin 1.9.23
to
2.0.0-RC1
and also updated:
Copy code
targets.withType<KotlinNativeTarget> {
    compilations["main"].kotlinOptions.freeCompilerArgs += "-Xexport-kdoc"
}
to
Copy code
iosMain {
    compilerOptions {
        freeCompilerArgs.add("-Xexport-kdoc")
    }
}
But now when running the project I get this warning only for `sharedcompileKotlinWasmJs`:
Flag is not supported by this version of the compiler: -Xexport-kdoc. (same for -Xbinary=bundleId)
Any reason?