import org.jetbrains.compose.gradle.standardConf plugins { kotlin("multiplatform") id("org.jetbrains.compose") } kotlin { jvm() js(IR) { browser() { testTask { useKarma { standardConf() } } } binaries.executable() } sourceSets { val commonMain by getting { dependencies { implementation(compose.runtime) } } val jsMain by getting { dependencies { implementation(project(":web-core")) } } val jsTest by getting { dependencies { implementation(kotlin("test-js")) } } val jvmMain by getting { dependencies { implementation(compose.desktop.currentOs) } } } }