[Gradle] Suppress JS deprecation warning in test projects

This commit is contained in:
Alexander Likhachev
2023-01-03 20:06:14 +01:00
committed by Space Team
parent d7b446d20f
commit be3fe747c3
3 changed files with 3 additions and 0 deletions
@@ -11,6 +11,7 @@ repositories {
} }
kotlin { kotlin {
@Suppress("DEPRECATION")
js(BOTH) { js(BOTH) {
nodejs { nodejs {
} }
@@ -8,6 +8,7 @@ dependencies {
implementation(kotlin("stdlib-js")) implementation(kotlin("stdlib-js"))
} }
@Suppress("DEPRECATION")
kotlin { kotlin {
js("both") js("both")
js(BOTH) js(BOTH)
@@ -9,6 +9,7 @@ repositories {
mavenCentral() mavenCentral()
} }
@Suppress("DEPRECATION")
kotlin { kotlin {
js(BOTH) js(BOTH)
js(BOTH_TYPE) { js(BOTH_TYPE) {