Created
February 15, 2020 23:23
-
-
Save night-crawler/b72a3a7f89c3b85d38713df99ebe2aa8 to your computer and use it in GitHub Desktop.
Sufficient Kotlin/JS compilation settings
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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