bmo
08/05/2017, 1:24 PMkonsoletyper
08/05/2017, 4:16 PMCopy
task with zipTree
source.bmo
08/05/2017, 9:57 PMbashor
08/07/2017, 12:48 PMbmo
08/07/2017, 12:53 PMExamining the Compilation Output
When compiling (we'll use this term interchangeably with transpiling) to JavaScript, Kotlin outputs two main files:
kotlin.js. The runtime and standard library. This doesn't change between applications. It's tied to the version of Kotlin being used.
{module}.js. The actual code from the application. All files are compiled into a single JavaScript file which has the same name as the module.https://kotlinlang.org/docs/tutorials/javascript/kotlin-to-javascript/kotlin-to-javascript.html
bashor
08/07/2017, 1:35 PM