packageDependencies.d.ts 330 B

123456789
  1. import { Lazy } from "lazy-val";
  2. export declare function createLazyProductionDeps(projectDir: string, excludedDependencies: Array<string> | null): Lazy<any[]>;
  3. export interface NodeModuleDirInfo {
  4. readonly dir: string;
  5. readonly deps: Array<NodeModuleInfo>;
  6. }
  7. export interface NodeModuleInfo {
  8. readonly name: string;
  9. }