summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gradle.properties3
1 files changed, 3 insertions, 0 deletions
diff --git a/gradle.properties b/gradle.properties
index e4f47a55..627900da 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -1,6 +1,9 @@
org.gradle.parallel=true
org.gradle.caching=true
+# Getting OOM when building the project from scratch with JS IR backend
+kotlin.daemon.jvmargs=-Xmx2g
+
kotlin.js.compiler=ir
# To disable warning about experimental status of Kotlin MPP
bgstack15