mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
22 lines
431 B
Plaintext
22 lines
431 B
Plaintext
plugins {
|
|
kotlin("js")
|
|
}
|
|
|
|
kotlin {
|
|
js {
|
|
browser {}
|
|
}
|
|
}
|
|
|
|
val coroutinesVersion: String by project.ext
|
|
|
|
dependencies {
|
|
api(project(":core"))
|
|
api(project(":observable"))
|
|
api("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion")
|
|
implementation(npm("@fortawesome/fontawesome-free", "^5.13.1"))
|
|
|
|
testImplementation(kotlin("test-js"))
|
|
testImplementation(project(":test-utils"))
|
|
}
|