2021-03-19 01:58:50 +08:00
|
|
|
import org.jetbrains.kotlin.gradle.tasks.Kotlin2JsCompile
|
|
|
|
|
2020-10-11 05:48:38 +08:00
|
|
|
plugins {
|
|
|
|
kotlin("js")
|
|
|
|
}
|
|
|
|
|
|
|
|
kotlin {
|
|
|
|
js {
|
|
|
|
browser {}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
api(project(":core"))
|
|
|
|
api(project(":observable"))
|
2020-11-03 03:04:44 +08:00
|
|
|
implementation(npm("@fortawesome/fontawesome-free", "^5.13.1"))
|
2020-10-11 05:48:38 +08:00
|
|
|
|
|
|
|
testImplementation(kotlin("test-js"))
|
2020-10-15 07:19:12 +08:00
|
|
|
testImplementation(project(":test-utils"))
|
2021-03-19 01:58:50 +08:00
|
|
|
|
|
|
|
tasks.withType<Kotlin2JsCompile> {
|
|
|
|
kotlinOptions.freeCompilerArgs += listOf(
|
|
|
|
"-Xopt-in=kotlin.RequiresOptIn",
|
|
|
|
"-Xopt-in=kotlin.contracts.ExperimentalContracts",
|
|
|
|
"-Xopt-in=kotlin.time.ExperimentalTime"
|
|
|
|
)
|
|
|
|
}
|
2020-10-11 05:48:38 +08:00
|
|
|
}
|