DirectoryLocations: {
    bin?: string;
    doc?: string;
    example?: string;
    lib?: string;
    man?: string;
    test?: string;
    [directoryType: string]: undefined | JsonValue;
}

Type declaration

  • [directoryType: string]: undefined | JsonValue
  • Optionalbin?: string

    Location for executable scripts. Sugar to generate entries in the bin property by walking the folder.

  • Optionaldoc?: string

    Location for Markdown files.

  • Optionalexample?: string

    Location for example scripts.

  • Optionallib?: string

    Location for the bulk of the library.

  • Optionalman?: string

    Location for man pages. Sugar to generate a man array by walking the folder.

  • Optionaltest?: string

    Location for test files.