Backstage
    Preparing search index...

    Interface FileConfigSourceOptions

    interface FileConfigSourceOptions {
        parser?: Parser;
        path: string;
        substitutionFunc?: EnvFunc;
        watch?: boolean;
    }
    Index

    Properties

    parser?: Parser

    A content parsing function to transform string content to configuration values.

    path: string

    The path to the config file that should be loaded.

    substitutionFunc?: EnvFunc

    A substitution function to use instead of the default environment substitution.

    watch?: boolean

    Set to false to disable file watching, defaults to true.