You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.1 KiB
48 lines
1.1 KiB
import org.jetbrains.compose.gradle.standardConf |
|
|
|
plugins { |
|
kotlin("multiplatform") |
|
id("org.jetbrains.compose") |
|
} |
|
|
|
|
|
kotlin { |
|
js(IR) { |
|
browser() { |
|
testTask { |
|
useKarma { |
|
standardConf() |
|
} |
|
} |
|
} |
|
binaries.executable() |
|
} |
|
|
|
sourceSets { |
|
val commonMain by getting { |
|
dependencies { |
|
implementation(compose.runtime) |
|
implementation(kotlin("stdlib-common")) |
|
} |
|
} |
|
|
|
val jsMain by getting { |
|
dependencies { |
|
api(project(":internal-html-core-runtime")) |
|
implementation(kotlin("stdlib-js")) |
|
api(project(":html-core")) |
|
} |
|
} |
|
|
|
val jsTest by getting { |
|
languageSettings { |
|
optIn("org.jetbrains.compose.web.testutils.ComposeWebExperimentalTestsApi") |
|
} |
|
dependencies { |
|
implementation(project(":html-test-utils")) |
|
implementation(kotlin("test-js")) |
|
implementation(libs.kotlinx.coroutines.core) |
|
} |
|
} |
|
} |
|
}
|
|
|