UNPKG

@ui5/task-adaptation

Version:

Custom task for ui5-builder which allows building UI5 Flexibility Adaptation Projects for SAP BTP, Cloud Foundry environment

23 lines (22 loc) 596 B
import { AbapTarget } from "@sap-ux/system-access"; export interface IConfiguration { appHostId?: string; appId?: string; appName?: string; appVersion?: string; space?: string; org?: string; sapCloudService?: string; destination?: string; type?: "cf" | "abap"; languages?: any[] | undefined; enableAnnotationCache?: boolean; enableBetaFeatures?: boolean; writeTempFiles?: any; target?: AbapTarget & IAbapTargetMeta; serviceInstanceName?: string; } export interface IAbapTargetMeta { name?: string; ignoreCertErrors?: boolean; }