Configuration: Update default settings for Kotlin/JS compiler

This commit is contained in:
Alexey Sedunov
2017-08-03 20:01:32 +03:00
parent d738633981
commit 3b4891279e
@@ -75,7 +75,10 @@ abstract class BaseKotlinCompilerSettings<T : Freezable> protected constructor()
private val SKIP_DEFAULT_VALUES = SkipDefaultValuesSerializationFilters(
CommonCompilerArguments.DummyImpl(),
K2JVMCompilerArguments(),
K2JSCompilerArguments()
K2JSCompilerArguments().apply {
sourceMapPrefix = ""
sourceMapEmbedSources = K2JsArgumentConstants.SOURCE_MAP_SOURCE_CONTENT_INLINING
}
)
}
}