[K/JS] Remove the ability to run Legacy JS backend from the Gradle Plugin

This commit is contained in:
Artem Kobzar
2023-03-28 12:47:04 +00:00
committed by Space Team
parent ae32eff543
commit c6e4858bc9
53 changed files with 239 additions and 43 deletions
+4 -1
View File
@@ -28,7 +28,10 @@ buildDir = "$projectDir/build"
["compileKotlin2Js", "compileTestKotlin2Js"].forEach {
tasks.named(it).configure {
kotlinOptions.moduleKind = "commonjs"
kotlinOptions {
moduleKind = "commonjs"
freeCompilerArgs += "-Xforce-deprecated-legacy-compiler-usage"
}
}
}