interface Interface {
    Action?: boolean | Interface;
    Cache?: boolean | Interface;
    Exclude?:
        | boolean
        | Type
        | Type[]
        | Set<Type>;
    File?: string | boolean | string[];
    Logger?: boolean | Type;
    Path?:
        | boolean
        | Type
        | Type[]
        | Set<Type>;
}

Hierarchy

  • default
    • Interface

Properties

Action?: boolean | Interface

Action pipe configuration.

Cache?: boolean | Interface

Configuration for the target cache.

{ Search: "./", Folder: "./Cache" }
Exclude?:
    | boolean
    | Type
    | Type[]
    | Set<Type>

Criteria for excluding files.

File?: string | boolean | string[]

File patterns to be matched.

Logger?: boolean | Type

Debugging level.

2
Path?:
    | boolean
    | Type
    | Type[]
    | Set<Type>

Configuration for the target path(s).

"./Target"