Package version:

Interface BuildConfiguration

Configuration of the build.

interface BuildConfiguration {
    baseOs?: string;
    environmentVariables?: EnvironmentVariable[];
    platform?: string;
    platformVersion?: string;
    preBuildSteps?: PreBuildStep[];
}

Properties

baseOs?: string

Base OS used to build and run the app.

environmentVariables?: EnvironmentVariable[]

List of environment variables to be passed to the build, secrets should not be used in environment variable.

platform?: string

Platform to be used to build and run the app.

platformVersion?: string

Platform version to be used to build and run the app.

preBuildSteps?: PreBuildStep[]

List of steps to perform before the build.