Interface representing the approximate structure of a project in the configuration.

ApproximateProject

interface ApproximateProject {
    entryFile: string;
    root: string;
    sourceRoot: string;
    task?: ApproximateTask;
    type: string;
}

Properties

entryFile: string
root: string
sourceRoot: string
type: string

Generated using TypeDoc