bintastic
    Preparing search index...

    Interface BintasticOptions<TProject>

    Options for configuring bintastic.

    interface BintasticOptions<TProject> {
        binPath:
            | string
            | (<TProject extends BintasticProject>(project: TProject) => string);
        createProject?: () => Promise<TProject>;
        staticArgs?: string[];
    }

    Type Parameters

    • TProject
    Index

    Properties

    binPath:
        | string
        | (<TProject extends BintasticProject>(project: TProject) => string)

    The absolute path to the bin to invoke

    createProject?: () => Promise<TProject>

    An optional function to use to create the project. Use this if you want to provide a custom implementation of a BintasticProject.

    staticArgs?: string[]

    An array of static arguments that will be used every time when running the bin