[JS IR] add a flag which prepends a custom prefix to the per-module .js files

This commit is contained in:
Anton Bannykh
2020-09-30 16:58:32 +03:00
committed by TeamCityServer
parent 7bd9462ffb
commit 6e40c814c8
4 changed files with 15 additions and 3 deletions
@@ -157,6 +157,9 @@ class K2JSCompilerArguments : CommonCompilerArguments() {
@Argument(value = "-Xir-per-module", description = "Splits generated .js per-module")
var irPerModule: Boolean by FreezableVar(false)
@Argument(value = "-Xir-per-module-prefix", description = "Adds a custom prefix to the splitted js files")
var irPerModulePrefix: String? by NullableStringFreezableVar(null)
@Argument(
value = "-Xinclude",
valueDescription = "<path>",