Hi I have one more issue, I have this setup; ``` ...
# multiplatform
k
Hi I have one more issue, I have this setup;
Copy code
sourceSets {
    commonMain.dependencies {
      implementation("org.jetbrains.kotlin:kotlin-stdlib:1.9.23")
    }
    jsMain.dependencies {
      implementation("org.jetbrains.kotlin:kotlin-stdlib-js:1.9.23")
    }
...
}
and I'd like to use
@JsExport
annotation on certain classes but it works only in the jsMain sources not in commonMain.. it is not available there. Any ideas why? The documentation says it should be available even in the common sources, but no matter how I try it is not there. Could it be a bug in the recent 1.9.23 version?