@cspell/cspell-tools
Version:
Tools to assist with the development of cSpell
12 lines • 510 B
TypeScript
export interface BuildOptions {
/** Optional path to config file */
config?: string | undefined;
/** Used to resolve relative paths in the config. */
root?: string | undefined;
/** Current working directory */
cwd?: string | undefined;
/** Conditional build based upon the targets matching the `checksum.txt` file. */
conditional?: boolean;
}
export declare function build(targets: string[] | undefined, options: BuildOptions): Promise<void>;
//# sourceMappingURL=build.d.ts.map