turbo-gulp
Version:
Gulp tasks to boost high-quality projects.
20 lines (19 loc) • 471 B
TypeScript
/**
* CopyOptions describes a copy operation required to build a target.
*/
export interface CopyOptions {
/**
* Base directory of the files to copy. Relative to target.srcDir
* Default: target.srcDir
*/
src?: string;
/**
* A list of minimatch patterns
*/
files: string[];
/**
* Target directory of the copy, relative to the target output directory.
* Default: target output directory
*/
dest?: string;
}