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.
15 lines (14 loc) • 408 B
TypeScript
interface TSConfig {
compilerOptions: {
typeRoots: string[];
[key: string]: unknown;
};
[key: string]: unknown;
}
/**
* @param directory where tsconfig file will be located
* @param tsconfig tsconfig to be updated
* @returns tsconfig that has updated typeRoots property
*/
export declare function updateTsConfigTypeRoots(dir: string, tsconfig: TSConfig): TSConfig;
export {};