Package org.jetbrains.kotlin.gradle.dsl
Interface KotlinJsOptions
-
- All Implemented Interfaces:
-
org.jetbrains.kotlin.gradle.dsl.KotlinCommonOptions
,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 KotlinJsOptions implements KotlinCommonOptions
Compiler options for Kotlin/JS.
-
-
Method Summary
-
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
-
getFriendModulesDisabled
Boolean getFriendModulesDisabled()
-
setFriendModulesDisabled
Unit setFriendModulesDisabled(Boolean friendModulesDisabled)
-
getMetaInfo
Boolean getMetaInfo()
-
setMetaInfo
Unit setMetaInfo(@Deprecated(message = "Only for legacy backend.", level = DeprecationLevel.WARNING) Boolean metaInfo)
-
getModuleKind
String getModuleKind()
-
setModuleKind
Unit setModuleKind(String moduleKind)
-
getModuleName
String getModuleName()
-
setModuleName
Unit setModuleName(String moduleName)
-
getNoStdlib
Boolean getNoStdlib()
-
setNoStdlib
Unit setNoStdlib(@Deprecated(message = "Only for legacy backend.", level = DeprecationLevel.WARNING) Boolean noStdlib)
-
getSourceMap
Boolean getSourceMap()
-
setSourceMap
Unit setSourceMap(Boolean sourceMap)
-
getSourceMapEmbedSources
String getSourceMapEmbedSources()
-
setSourceMapEmbedSources
Unit setSourceMapEmbedSources(String sourceMapEmbedSources)
-
getSourceMapNamesPolicy
String getSourceMapNamesPolicy()
-
setSourceMapNamesPolicy
Unit setSourceMapNamesPolicy(String sourceMapNamesPolicy)
-
getSourceMapPrefix
String getSourceMapPrefix()
-
setSourceMapPrefix
Unit setSourceMapPrefix(String sourceMapPrefix)
-
getTypedArrays
Boolean getTypedArrays()
-
setTypedArrays
Unit setTypedArrays(Boolean typedArrays)
-
getUseEsClasses
Boolean getUseEsClasses()
-
setUseEsClasses
Unit setUseEsClasses(Boolean useEsClasses)
-
-
-
-