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
3 years ago
|
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
|
||
3 years ago
|
import org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension
|
||
3 years ago
|
|
||
|
plugins {
|
||
3 years ago
|
kotlin("multiplatform")
|
||
|
id("org.jetbrains.compose")
|
||
3 years ago
|
}
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||
3 years ago
|
google()
|
||
3 years ago
|
}
|
||
|
|
||
|
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)
|
||
|
}
|
||
|
}
|
||
|
}
|
||
3 years ago
|
}
|
||
3 years ago
|
|
||
|
// a temporary workaround for a bug in jsRun invocation - see https://youtrack.jetbrains.com/issue/KT-48273
|
||
|
afterEvaluate {
|
||
3 years ago
|
rootProject.extensions.configure<NodeJsRootExtension> {
|
||
3 years ago
|
nodeVersion = "16.0.0"
|
||
3 years ago
|
versions.webpackDevServer.version = "4.0.0"
|
||
2 years ago
|
versions.webpackCli.version = "4.10.0"
|
||
3 years ago
|
}
|
||
|
}
|
||
|
|