Didn't get to watch the keynote today, any Kotlin/...
# javascript
g
Didn't get to watch the keynote today, any Kotlin/JS announcements?
b
Nothing special for Kotlin/JS but everything related to language is works for Kotlin/JS too, like: release coroutines, contracts, parameterless main, MPP and so on. You can find more info here https://blog.jetbrains.com/kotlin/2018/10/kotlinconf-2018-announcements/ https://kotlinlang.org/docs/reference/whatsnew13.html Also, you can watch videos from first room here

https://www.youtube.com/watch?v=PsaFVLr8t4E&list=PLQ176FUIyIUbVvFMqDc2jhxS-t562uytr

Amazing thing related to Kotlin/JS is
Incremental Compilation
that speed up compilation up to 7 times. Please try it and give as feedback. It is available in 1.3 and even in 1.2.70, for more information take a look https://blog.jetbrains.com/kotlin/2018/09/kotlin-1-2-70-is-out/
🎉 6
👍 6
d
Sounds great! Is there a way to enable incremental compilation for create-react-kotlin-app projects?
b
@dawitt yes, this should work:
In a project built with IntelliJ IDEA, go to Settings | Build, Execution, Deployment | Compiler | Kotlin Compiler | Kotlin to JavaScript and check Enable incremental compilation (experimental).
g
Awesome, I'm creating a new project now so I'll check that out