Skip to content

Commit

Permalink
Fix legacy mode
Browse files Browse the repository at this point in the history
  • Loading branch information
porotkin committed Sep 18, 2024
1 parent 7447d31 commit 976af0d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ private val LEGACY = BooleanProperty("kfc.legacy")

internal fun Project.applyKotlinDefaults() {
ext(DOM_API_INCLUDED, false)
ext(OUTPUT_GRANULARITY, if (property(LEGACY)) "per-file" else "whole-program")
ext(OUTPUT_GRANULARITY, if (property(LEGACY)) "whole-program" else "per-file")

plugins.apply(SourceMapsPlugin::class)

Expand Down

0 comments on commit 976af0d

Please sign in to comment.