-
- All Implemented Interfaces:
-
org.jetbrains.kotlin.gradle.dsl.KotlinCommonToolOptions
public interface KotlinJsDceOptions implements KotlinCommonToolOptions
-
-
Method Summary
Modifier and Type Method Description abstract BooleangetDevMode()Development mode: don't strip out any code, just copy dependencies Default value: false abstract UnitsetDevMode(Boolean devMode)Development mode: don't strip out any code, just copy dependencies Default value: false abstract StringgetOutputDirectory()Output directory Default value: null abstract UnitsetOutputDirectory(String outputDirectory)Output directory Default value: null -
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
abstract Boolean getDevMode()
Development mode: don't strip out any code, just copy dependencies Default value: false
-
setDevMode
abstract Unit setDevMode(Boolean devMode)
Development mode: don't strip out any code, just copy dependencies Default value: false
-
getOutputDirectory
abstract String getOutputDirectory()
Output directory Default value: null
-
setOutputDirectory
abstract Unit setOutputDirectory(String outputDirectory)
Output directory Default value: null
-
-
-
-