Guest User

Untitled

a guest
Nov 20th, 2017
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. version '1.0-SNAPSHOT'
  2.  
  3. buildscript {
  4. ext.kotlin_version = '1.1.60'
  5.  
  6. repositories {
  7. mavenCentral()
  8. }
  9. dependencies {
  10. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  11. }
  12. }
  13.  
  14. apply plugin: 'kotlin2js'
  15. apply plugin: 'kotlin-dce-js'
  16.  
  17. repositories {
  18. mavenCentral()
  19. }
  20.  
  21. dependencies {
  22. compile "org.jetbrains.kotlin:kotlin-stdlib-js:$kotlin_version"
  23. }
  24.  
  25. compileKotlin2Js {
  26. kotlinOptions.sourceMap = true
  27. }
Add Comment
Please, Sign In to add comment