phantasmal-world/build.gradle.kts

31 lines
802 B
Plaintext
Raw Normal View History

import org.jetbrains.kotlin.gradle.tasks.Kotlin2JsCompile
plugins {
kotlin("js") version "1.4.10" apply false
kotlin("multiplatform") version "1.4.10" apply false
kotlin("plugin.serialization") version "1.4.10" apply false
}
tasks.wrapper {
gradleVersion = "6.6.1"
}
subprojects {
project.extra["coroutinesVersion"] = "1.3.9"
project.extra["kotlinLoggingVersion"] = "2.0.2"
project.extra["ktorVersion"] = "1.4.1"
project.extra["serializationVersion"] = "1.0.0"
repositories {
jcenter()
}
tasks.withType<Kotlin2JsCompile> {
kotlinOptions.freeCompilerArgs += listOf(
"-Xopt-in=kotlin.RequiresOptIn",
"-Xopt-in=kotlin.ExperimentalUnsignedTypes",
"-Xopt-in=kotlin.time.ExperimentalTime"
)
}
}