[Wizard, JS] Change js compiler default

^KT-41656 fixed
This commit is contained in:
Ilya Goncharov
2020-09-03 19:26:07 +03:00
parent 6746bd81d5
commit 20a1ea0413
16 changed files with 33 additions and 34 deletions
@@ -11,12 +11,12 @@ repositories {
}
}
kotlin {
js('nodeJs') {
js('nodeJs', LEGACY) {
nodejs {
binaries.executable()
}
}
js('browser') {
js('browser', LEGACY) {
browser {
binaries.executable()
webpackTask {
@@ -11,12 +11,12 @@ repositories {
}
}
kotlin {
js("nodeJs") {
js("nodeJs", LEGACY) {
nodejs {
binaries.executable()
}
}
js("browser") {
js("browser", LEGACY) {
browser {
binaries.executable()
webpackTask {
@@ -16,7 +16,7 @@ kotlin {
kotlinOptions.jvmTarget = '9'
}
}
js('a') {
js('a', LEGACY) {
browser {
binaries.executable()
webpackTask {
@@ -16,7 +16,7 @@ kotlin {
kotlinOptions.jvmTarget = "9"
}
}
js("a") {
js("a", LEGACY) {
browser {
binaries.executable()
webpackTask {
@@ -14,7 +14,7 @@ dependencies {
testImplementation 'org.jetbrains.kotlin:kotlin-test-js'
}
kotlin {
js {
js(LEGACY) {
browser {
binaries.executable()
webpackTask {
@@ -14,7 +14,7 @@ dependencies {
testImplementation(kotlin("test-js"))
}
kotlin {
js {
js(LEGACY) {
browser {
binaries.executable()
webpackTask {
@@ -14,7 +14,7 @@ dependencies {
testImplementation 'org.jetbrains.kotlin:kotlin-test-js'
}
kotlin {
js {
js(LEGACY) {
nodejs {
binaries.executable()
}
@@ -14,7 +14,7 @@ dependencies {
testImplementation(kotlin("test-js"))
}
kotlin {
js {
js(LEGACY) {
nodejs {
binaries.executable()
}