phantasmal-world/web/build.gradle.kts

48 lines
1.3 KiB
Plaintext

plugins {
kotlin("js")
kotlin("plugin.serialization")
}
kotlin {
js {
browser {
webpackTask {
cssSupport.enabled = true
}
runTask {
devServer = devServer!!.copy(
open = false,
port = 1623
)
cssSupport.enabled = true
}
testTask {
useKarma {
useChromeHeadless()
webpackConfig.cssSupport.enabled = true
}
}
}
binaries.executable()
}
}
val coroutinesVersion: String by project.ext
val kotlinLoggingVersion: String by project.extra
val ktorVersion: String by project.extra
dependencies {
implementation(project(":lib"))
implementation(project(":webui"))
implementation("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
implementation("io.ktor:ktor-client-core-js:$ktorVersion")
implementation("io.ktor:ktor-client-serialization-js:$ktorVersion")
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core-js:1.0.0")
implementation(npm("golden-layout", "1.5.9"))
implementation(npm("@babylonjs/core", "4.1.0"))
testImplementation(kotlin("test-js"))
testImplementation(project(":test-utils"))
}