mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
27 lines
510 B
Plaintext
27 lines
510 B
Plaintext
plugins {
|
|
kotlin("js")
|
|
}
|
|
|
|
kotlin {
|
|
js {
|
|
browser {
|
|
testTask {
|
|
useKarma {
|
|
useChromeHeadless()
|
|
}
|
|
}
|
|
}
|
|
binaries.executable()
|
|
}
|
|
}
|
|
|
|
val kotlinLoggingVersion: String by project.extra
|
|
|
|
dependencies {
|
|
api(project(":web:shared"))
|
|
implementation("io.github.microutils:kotlin-logging-js:$kotlinLoggingVersion")
|
|
|
|
testImplementation(kotlin("test-js"))
|
|
testImplementation(project(":test-utils"))
|
|
}
|