mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-03 13:58:28 +08:00
24 lines
385 B
Plaintext
24 lines
385 B
Plaintext
plugins {
|
|
id("world.phantasmal.js")
|
|
}
|
|
|
|
kotlin {
|
|
js {
|
|
binaries.executable()
|
|
}
|
|
|
|
sourceSets {
|
|
getByName("jsMain") {
|
|
dependencies {
|
|
api(project(":web:shared"))
|
|
}
|
|
}
|
|
|
|
getByName("jsTest") {
|
|
dependencies {
|
|
implementation(project(":test-utils"))
|
|
}
|
|
}
|
|
}
|
|
}
|