[Gradle, JS] Add compiler type values on extension type

#KT-38519 fixed
This commit is contained in:
Ilya Goncharov
2020-04-23 14:59:40 +03:00
parent 025d1ca64d
commit 9a3bf54d9d
2 changed files with 12 additions and 4 deletions
@@ -7,4 +7,13 @@ package org.jetbrains.kotlin.gradle.plugin
interface KotlinJsCompilerTypeHolder {
val defaultJsCompilerType: KotlinJsCompilerType
val LEGACY: KotlinJsCompilerType
get() = KotlinJsCompilerType.LEGACY
val IR: KotlinJsCompilerType
get() = KotlinJsCompilerType.IR
val BOTH: KotlinJsCompilerType
get() = KotlinJsCompilerType.BOTH
}