Tristan
12/15/2021, 6:59 PMplugins {
kotlin("js") version "1.5.10"
}
repositories {
mavenCentral()
}
kotlin {
js(IR) {
binaries.executable()
browser()
}
sourceSets {
val main by getting {
dependencies {
implementation("org.jetbrains.kotlinx:kotlinx-datetime:0.3.1")
}
}
}
}
But when I try to compile, I get this error
> Task :compileKotlinJs FAILED
e: java.lang.AssertionError: Built-in class kotlin.Unit is not found
How should I import this?
Thanks for your help.Tristan
12/15/2021, 7:03 PMrusshwolf
12/15/2021, 7:18 PMTristan
12/15/2021, 7:25 PM