KC's Workspace
    Preparing search index...
    interface CheckPackageOptions {
        entrypoints?: string[];
        entrypointsLegacy?: boolean;
        excludeEntrypoints?: (string | RegExp)[];
        includeEntrypoints?: string[];
    }

    Hierarchy (View Summary)

    Index

    Properties

    entrypoints?: string[]

    Exhaustive list of entrypoints to check. The package root is ".". Specifying this option disables automatic entrypoint discovery, and overrides the includeEntrypoints and excludeEntrypoints options.

    entrypointsLegacy?: boolean

    Whether to automatically consider all published files as entrypoints in the absence of any other detected or configured entrypoints.

    excludeEntrypoints?: (string | RegExp)[]

    Entrypoints to exclude from checking.

    includeEntrypoints?: string[]

    Entrypoints to check in addition to automatically discovered ones.