dt-app
Version:
The Dynatrace App Toolkit is a tool you can use from your command line to create, develop, and deploy apps on your Dynatrace environment.
24 lines (23 loc) • 669 B
TypeScript
/** Function that will scope the typescript import and return FixedBuildTypeOptions */
export declare function getFixedBuildTypeOptions(root: string): {
ui: {
noEmit: boolean;
skipLibCheck: boolean;
target: import("typescript").ScriptTarget;
};
functions: {
noEmit: boolean;
skipLibCheck: boolean;
target: import("typescript").ScriptTarget;
};
actions: {
noEmit: boolean;
skipLibCheck: boolean;
target: import("typescript").ScriptTarget;
};
widgets: {
noEmit: boolean;
skipLibCheck: boolean;
target: import("typescript").ScriptTarget;
};
};