Package net.jangaroo.jooc.config
Interface JoocOptions
-
- All Known Implementing Classes:
JoocConfiguration
public interface JoocOptions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DebugModegetDebugMode()StringgetDependencyReportOutputFile()StringgetExtNamespace()StringgetExtSassNamespace()FilegetKeepGeneratedActionScriptDirectory()StringgetNpmPackageName()PublicApiViolationsModegetPublicApiViolationsMode()SemicolonInsertionModegetSemicolonInsertionMode()longgetTypeScriptTargetSourceFormatFeatures()booleanisEnableAssertions()booleanisExcludeClassByDefault()If true, the compiler will add an [ExcludeClass] annotation to any API stub whose source class contains neither an [PublicApi] nor an [ExcludeClass] annotation.booleanisFindUnusedDependencies()booleanisGenerateApi()booleanisGenerateSourceMaps()booleanisMigrateToTypeScript()booleanisSuppressCommentedActionScriptCode()booleanisUseEcmaParameterInitializerSemantics()
-
-
-
Method Detail
-
getSemicolonInsertionMode
SemicolonInsertionMode getSemicolonInsertionMode()
-
getDebugMode
DebugMode getDebugMode()
-
isSuppressCommentedActionScriptCode
boolean isSuppressCommentedActionScriptCode()
-
isEnableAssertions
boolean isEnableAssertions()
-
isGenerateApi
boolean isGenerateApi()
-
isUseEcmaParameterInitializerSemantics
boolean isUseEcmaParameterInitializerSemantics()
-
isMigrateToTypeScript
boolean isMigrateToTypeScript()
-
getTypeScriptTargetSourceFormatFeatures
long getTypeScriptTargetSourceFormatFeatures()
-
getExtNamespace
String getExtNamespace()
-
getExtSassNamespace
String getExtSassNamespace()
-
getNpmPackageName
String getNpmPackageName()
-
getPublicApiViolationsMode
PublicApiViolationsMode getPublicApiViolationsMode()
-
isExcludeClassByDefault
boolean isExcludeClassByDefault()
If true, the compiler will add an [ExcludeClass] annotation to any API stub whose source class contains neither an [PublicApi] nor an [ExcludeClass] annotation.
-
isGenerateSourceMaps
boolean isGenerateSourceMaps()
-
isFindUnusedDependencies
boolean isFindUnusedDependencies()
-
getDependencyReportOutputFile
String getDependencyReportOutputFile()
-
getKeepGeneratedActionScriptDirectory
File getKeepGeneratedActionScriptDirectory()
-
-