mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 06:28:28 +08:00
20 lines
334 B
Plaintext
20 lines
334 B
Plaintext
plugins {
|
|
id("world.phantasmal.js")
|
|
}
|
|
|
|
kotlin {
|
|
js {
|
|
compilations.configureEach {
|
|
languageSettings.optIn("kotlinx.serialization.ExperimentalSerializationApi")
|
|
}
|
|
|
|
binaries.executable()
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
api(project(":web:shared"))
|
|
|
|
testImplementation(project(":test-utils"))
|
|
}
|