1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
plugins { id("org.jetbrains.dokka") kotlin("js") } apply(from = "../template.root.gradle.kts") kotlin { js(IR) { browser() nodejs() } } dependencies { implementation(kotlin("stdlib")) implementation(npm("is-sorted", "1.0.5")) implementation("org.jetbrains.kotlin-wrappers:kotlin-react-router-dom:${properties["dokka_it_react_kotlin_version"]}") }