mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
24 lines
376 B
Plaintext
24 lines
376 B
Plaintext
plugins {
|
|
kotlin("js")
|
|
}
|
|
|
|
kotlin {
|
|
js {
|
|
browser {
|
|
testTask {
|
|
useKarma {
|
|
useChromeHeadless()
|
|
}
|
|
}
|
|
}
|
|
binaries.executable()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":web:shared"))
|
|
|
|
testImplementation(kotlin("test-js"))
|
|
testImplementation(project(":test-utils"))
|
|
}
|