@eagleoutice/flowr - v2.15.8
    Preparing search index...

    Interface FlowrLaxSourcingOptions

    see FlowrConfig.Schema's resolveSource for the per-field descriptions (kept there once, as that is what generates the published config docs)

    interface FlowrLaxSourcingOptions {
        applyReplacements?: Record<string, string>[];
        assumeFilesExist?: boolean;
        dropPaths: DropPathsOption;
        ignoreCapitalization: boolean;
        inferWorkingDirectory: InferWorkingDirectory;
        repeatedSourceLimit?: number;
        searchPath: string[];
        [key: string]: unknown;
    }

    Hierarchy (View Summary)

    Indexable

    • [key: string]: unknown
    Index
    applyReplacements?: Record<string, string>[]

    Regex replacements to try against a sourced file's candidate name, tried in order alongside the original name, e.g. { '.*\\.R$': 'main.R' } makes source("foo bar.R") also try main.R.

    assumeFilesExist?: boolean
    dropPaths: DropPathsOption
    ignoreCapitalization: boolean
    inferWorkingDirectory: InferWorkingDirectory
    repeatedSourceLimit?: number
    searchPath: string[]