-
- All Implemented Interfaces:
-
org.jetbrains.kotlin.gradle.dsl.KotlinCommonOptions
,org.jetbrains.kotlin.gradle.dsl.KotlinCommonToolOptions
public interface KotlinJsOptions implements KotlinCommonOptions
-
-
Method Summary
Modifier and Type Method Description abstract KotlinJsCompilerOptions
getOptions()
Boolean
getFriendModulesDisabled()
Unit
setFriendModulesDisabled(Boolean friendModulesDisabled)
String
getMain()
Unit
setMain(String main)
Boolean
getMetaInfo()
Unit
setMetaInfo(Boolean metaInfo)
String
getModuleKind()
Unit
setModuleKind(String moduleKind)
Boolean
getNoStdlib()
Unit
setNoStdlib(Boolean noStdlib)
String
getOutputFile()
Unit
setOutputFile(@Deprecated(message = "Use task 'outputFileProperty' to specify location", level = DeprecationLevel.WARNING) String outputFile)
Boolean
getSourceMap()
Unit
setSourceMap(Boolean sourceMap)
String
getSourceMapEmbedSources()
Unit
setSourceMapEmbedSources(String sourceMapEmbedSources)
String
getSourceMapPrefix()
Unit
setSourceMapPrefix(String sourceMapPrefix)
String
getTarget()
Unit
setTarget(String target)
Boolean
getTypedArrays()
Unit
setTypedArrays(Boolean typedArrays)
-
Methods inherited from class org.jetbrains.kotlin.gradle.dsl.KotlinCommonOptions
getApiVersion, getLanguageVersion, getUseK2, setApiVersion, setLanguageVersion, setUseK2
-
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
-
getOptions
abstract KotlinJsCompilerOptions getOptions()
-
getFriendModulesDisabled
Boolean getFriendModulesDisabled()
-
setFriendModulesDisabled
Unit setFriendModulesDisabled(Boolean friendModulesDisabled)
-
getMetaInfo
Boolean getMetaInfo()
-
setMetaInfo
Unit setMetaInfo(Boolean metaInfo)
-
getModuleKind
String getModuleKind()
-
setModuleKind
Unit setModuleKind(String moduleKind)
-
getNoStdlib
Boolean getNoStdlib()
-
setNoStdlib
Unit setNoStdlib(Boolean noStdlib)
-
getOutputFile
String getOutputFile()
-
setOutputFile
Unit setOutputFile(@Deprecated(message = "Use task 'outputFileProperty' to specify location", level = DeprecationLevel.WARNING) String outputFile)
-
getSourceMap
Boolean getSourceMap()
-
setSourceMap
Unit setSourceMap(Boolean sourceMap)
-
getSourceMapEmbedSources
String getSourceMapEmbedSources()
-
setSourceMapEmbedSources
Unit setSourceMapEmbedSources(String sourceMapEmbedSources)
-
getSourceMapPrefix
String getSourceMapPrefix()
-
setSourceMapPrefix
Unit setSourceMapPrefix(String sourceMapPrefix)
-
getTypedArrays
Boolean getTypedArrays()
-
setTypedArrays
Unit setTypedArrays(Boolean typedArrays)
-
-
-
-