Package org.jetbrains.kotlin.gradle.dsl
Interface KotlinJsDceOptions
-
- All Implemented Interfaces:
-
org.jetbrains.kotlin.gradle.dsl.KotlinCommonToolOptions
@Deprecated(message = "The kotlinOptions types are deprecated, please migrate to the compilerOptions types. More details are here: https://kotl.in/u1r8ln") public interface KotlinJsDceOptions implements KotlinCommonToolOptions
Options for the Kotlin JavaScript dead code elimination tool.
-
-
Method Summary
Modifier and Type Method Description Boolean
getDevMode()
Unit
setDevMode(Boolean devMode)
String
getOutputDirectory()
Unit
setOutputDirectory(@Deprecated(message = "Use task 'destinationDirectory' to configure output directory", level = DeprecationLevel.ERROR) String outputDirectory)
-
Methods inherited from class org.jetbrains.kotlin.gradle.dsl.KotlinCommonToolOptions
getAllWarningsAsErrors, getFreeCompilerArgs, getSuppressWarnings, getVerbose, setAllWarningsAsErrors, setFreeCompilerArgs, setSuppressWarnings, setVerbose
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
getDevMode
Boolean getDevMode()
-
setDevMode
Unit setDevMode(Boolean devMode)
-
getOutputDirectory
String getOutputDirectory()
-
setOutputDirectory
Unit setOutputDirectory(@Deprecated(message = "Use task 'destinationDirectory' to configure output directory", level = DeprecationLevel.ERROR) String outputDirectory)
-
-
-
-