PeopleInSpace/compose-web/build.gradle.kts
2021-10-22 19:11:57 +02:00

43 lines
No EOL
917 B
Text

plugins {
kotlin("multiplatform")
id("org.jetbrains.compose") version "1.0.0-beta1"
}
version = "1.0"
repositories {
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
kotlin {
js(IR) {
browser()
binaries.executable()
}
sourceSets {
val jsMain by getting {
dependencies {
implementation(compose.web.widgets)
implementation(compose.web.core)
implementation(compose.runtime)
implementation(project(":common"))
}
}
}
}
// workaround for https://youtrack.jetbrains.com/issue/KT-48273
afterEvaluate {
rootProject.extensions.configure<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension> {
versions.webpackDevServer.version = "4.0.0"
}
}
compose.desktop {
application {
mainClass = ""
}
}