How do you see the Kotlin Compiler output in Gradl...
# gradle
h
How do you see the Kotlin Compiler output in Gradle? Using
compileProductionLibraryKotlinJs --debug -Pkotlin.verbose=true
does not print any (useful) compiler outputs in Gradle
m
Maybe
Copy code
tasks.withType<KotlinCompile>().configureEach {
    kotlinOptions.freeCompilerArgs += "-verbose"
}
?