mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 23:38:30 +08:00
17 lines
194 B
Plaintext
17 lines
194 B
Plaintext
![]() |
plugins {
|
||
|
kotlin("js")
|
||
|
}
|
||
|
|
||
|
kotlin {
|
||
|
js {
|
||
|
browser {}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
api(project(":core"))
|
||
|
api(project(":observable"))
|
||
|
|
||
|
testImplementation(kotlin("test-js"))
|
||
|
}
|