Gradle, js: introduce commonJs() dsl function

This commit is contained in:
Sergey Rostov
2019-05-17 13:01:04 +03:00
parent 83042afd5c
commit b8fd4f56bb
@@ -51,4 +51,14 @@ class KotlinJsTarget(project: Project, platformType: KotlinPlatformType) :
override fun nodejs(body: KotlinJsNodeDsl.() -> Unit) {
nodejs.body()
}
fun useCommonJs() {
compilations.all {
it.compileKotlinTask.kotlinOptions {
moduleKind = "commonjs"
sourceMap = true
sourceMapEmbedSources = null
}
}
}
}