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.
42 lines
1.0 KiB
42 lines
1.0 KiB
import org.jetbrains.compose.compose |
|
import org.jetbrains.compose.desktop.application.dsl.TargetFormat |
|
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension |
|
|
|
plugins { |
|
kotlin("multiplatform") |
|
id("org.jetbrains.compose") |
|
} |
|
|
|
repositories { |
|
mavenCentral() |
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev") |
|
google() |
|
} |
|
|
|
kotlin { |
|
js(IR) { |
|
browser() |
|
binaries.executable() |
|
} |
|
sourceSets { |
|
val jsMain by getting { |
|
kotlin.srcDir("src/main/kotlin") |
|
resources.srcDir("src/main/resources") |
|
|
|
dependencies { |
|
implementation(compose.web.core) |
|
implementation(compose.runtime) |
|
} |
|
} |
|
} |
|
} |
|
|
|
// a temporary workaround for a bug in jsRun invocation - see https://youtrack.jetbrains.com/issue/KT-48273 |
|
afterEvaluate { |
|
rootProject.extensions.configure<NodeJsRootExtension> { |
|
nodeVersion = "16.0.0" |
|
versions.webpackDevServer.version = "4.0.0" |
|
versions.webpackCli.version = "4.9.0" |
|
} |
|
} |
|
|
|
|