Interface Config

interface Config {
    bundle: boolean;
    checkTypes: boolean;
    formatFolders: string[];
    typedoc: boolean;
    update: boolean;
}

Properties

bundle: boolean

Whether to bundle the project with tsup.

checkTypes: boolean

Whether to check if export types are exported correctly.

formatFolders: string[]

Folders to format with prettier.

typedoc: boolean

Whether to generate type documentation with typedoc.

update: boolean

Whether to check for dependency updates.