phantasmal-world/web/assembly-worker/build.gradle.kts

24 lines
376 B
Plaintext
Raw Normal View History

plugins {
kotlin("js")
}
kotlin {
js {
browser {
testTask {
useKarma {
useChromeHeadless()
}
}
}
binaries.executable()
}
}
dependencies {
api(project(":web:shared"))
testImplementation(kotlin("test-js"))
testImplementation(project(":test-utils"))
}