26 lines
404 B
Kotlin
26 lines
404 B
Kotlin
description = "Runtime library for the Atomicfu compiler plugin"
|
|
|
|
plugins {
|
|
kotlin("js")
|
|
}
|
|
|
|
group = "org.jetbrains.kotlin"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
kotlin {
|
|
js() {
|
|
browser()
|
|
nodejs()
|
|
}
|
|
|
|
sourceSets {
|
|
js().compilations["main"].defaultSourceSet {
|
|
dependencies {
|
|
compileOnly(kotlin("stdlib-js"))
|
|
}
|
|
}
|
|
}
|
|
} |