Skip to content

Instantly share code, notes, and snippets.

@night-crawler
Created February 15, 2020 23:23
Show Gist options
  • Select an option

  • Save night-crawler/b72a3a7f89c3b85d38713df99ebe2aa8 to your computer and use it in GitHub Desktop.

Select an option

Save night-crawler/b72a3a7f89c3b85d38713df99ebe2aa8 to your computer and use it in GitHub Desktop.
Sufficient Kotlin/JS compilation settings
kotlin {
target {
browser {
compilations.all {
kotlinOptions {
friendModulesDisabled = false
metaInfo = true
sourceMap = true
sourceMapEmbedSources = "always"
moduleKind = "commonjs"
main = "call"
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment