UNPKG

@nx/js

Version:

The JS plugin for Nx contains executors and generators that provide the best experience for developing JavaScript and TypeScript projects.

11 lines (10 loc) 311 B
export type FileInputOutput = { input: string; output: string; }; export type AssetGlob = FileInputOutput & { glob: string; ignore?: string[]; dot?: boolean; }; export declare function assetGlobsToFiles(assets: Array<AssetGlob | string>, rootDir: string, outDir: string): FileInputOutput[];