Package org.jetbrains.kotlin.gradle.dsl
Interface KotlinJsDceCompilerToolOptions
-
- All Implemented Interfaces:
-
org.jetbrains.kotlin.gradle.dsl.KotlinCommonCompilerToolOptions
public interface KotlinJsDceCompilerToolOptions implements KotlinCommonCompilerToolOptions
Options for the Kotlin JavaScript dead code elimination tool.
-
-
Method Summary
Modifier and Type Method Description abstract Property<Boolean>
getDevMode()
Development mode: don't strip out any code, just copy dependencies. abstract Property<String>
getOutputDirectory()
Output directory. -
Methods inherited from class org.jetbrains.kotlin.gradle.dsl.KotlinCommonCompilerToolOptions
getAllWarningsAsErrors, getFreeCompilerArgs, getSuppressWarnings, getVerbose
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getDevMode
@Input() abstract Property<Boolean> getDevMode()
Development mode: don't strip out any code, just copy dependencies.
Default value: false
-
getOutputDirectory
@Internal() abstract Property<String> getOutputDirectory()
Output directory.
Default value: null
-
-
-
-