Skip to content

Commit 8f9f2a2

Browse files
committed
enables nested type aliases for the whole project
1 parent 7c189f0 commit 8f9f2a2

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build.gradle.kts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,6 +194,9 @@ allprojects {
194194
// enables support for kotlin.time.Instant as kotlinx.datetime.Instant was deprecated; Issue #1350
195195
// Can be removed once kotlin.time.Instant is marked "stable".
196196
optIn.add("kotlin.time.ExperimentalTime")
197+
198+
// enables support for nested type-aliases, to be used with KoDEx to save on bytecode size
199+
freeCompilerArgs.add("-Xnested-type-aliases")
197200
}
198201
}
199202

0 commit comments

Comments
 (0)