phantasmal-world/web/assembly-worker/build.gradle.kts
2020-12-14 18:39:26 +01:00

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"))
}