[JS IR] Enable JS IR IC by default

^KT-53112 Fixed
This commit is contained in:
Alexander Korepanov
2022-09-12 13:01:55 +02:00
committed by Space
parent a70c4f15d6
commit e38f1494fc
@@ -123,7 +123,7 @@ internal class PropertiesProvider private constructor(private val project: Proje
get() = booleanProperty("kotlin.incremental.js.klib")
val incrementalJsIr: Boolean
get() = booleanProperty("kotlin.incremental.js.ir") ?: false
get() = booleanProperty("kotlin.incremental.js.ir") ?: true
val jsIrOutputGranularity: KotlinJsIrOutputGranularity
get() = this.property("kotlin.js.ir.output.granularity")?.let { KotlinJsIrOutputGranularity.byArgument(it) }