summaryrefslogtreecommitdiff
path: root/gradle.properties
diff options
context:
space:
mode:
authorJoffrey Bion <joffrey.bion@gmail.com>2023-01-29 04:36:31 +0100
committerJoffrey Bion <joffrey.bion@gmail.com>2023-01-29 04:36:31 +0100
commitd5b7f463bc64a849de1595a5b52ab26e2038613f (patch)
tree24e031146a38b62a58ef721f9ffa2ed2877736dd /gradle.properties
parentUpgrade to react 18 with kotlin-wrappers BOM (diff)
downloadseven-wonders-d5b7f463bc64a849de1595a5b52ab26e2038613f.tar.gz
seven-wonders-d5b7f463bc64a849de1595a5b52ab26e2038613f.tar.bz2
seven-wonders-d5b7f463bc64a849de1595a5b52ab26e2038613f.zip
Upgrade to Kotlin 1.8 and JS IR
Diffstat (limited to 'gradle.properties')
-rw-r--r--gradle.properties2
1 files changed, 2 insertions, 0 deletions
diff --git a/gradle.properties b/gradle.properties
index 71835180..e4f47a55 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,5 +1,7 @@
org.gradle.parallel=true
org.gradle.caching=true
+kotlin.js.compiler=ir
+
# To disable warning about experimental status of Kotlin MPP
kotlin.mpp.stability.nowarn=true
bgstack15