ngm-cli
Version:
Simple way to manage angular submodules in one repository
22 lines (21 loc) • 369 B
TypeScript
interface TsmOptions {
src: string;
dist: string;
tmp: string;
project: string;
pkg: any;
/**
* Array of local cross dependencies
* */
cross?: string[];
tsconfig: {
path: string;
config: any;
};
}
interface BuildOptions {
project: string;
verbose: boolean;
clean: boolean;
local: boolean;
}