f3c828a17d
Introduce 'platform' property in KotlinScripDefinition (should have a value which exists in TargetPlatform.ALL_KINDS) ^KT-27684 Fixed
22 lines
337 B
Kotlin
Vendored
22 lines
337 B
Kotlin
Vendored
import org.jetbrains.kotlin.gradle.tasks.Kotlin2JsCompile
|
|
|
|
plugins {
|
|
id("kotlin2js") version "1.3.10"
|
|
}
|
|
|
|
dependencies {
|
|
implementation(kotlin("stdlib-js", "1.3.10"))
|
|
}
|
|
|
|
repositories {
|
|
jcenter()
|
|
}
|
|
|
|
tasks {
|
|
"compileKotlin2Js"(Kotlin2JsCompile::class) {
|
|
kotlinOptions {
|
|
metaInfo = true
|
|
}
|
|
}
|
|
}
|