| 1 | export interface RcFile { |
| 2 | /** @see https://syncpack.dev/config/syncpackrc/#json */ |
| 3 | $schema?: string; |
| 4 | /** @see https://syncpack.dev/config/custom-types */ |
| 5 | customTypes?: { |
| 6 | [name: string]: CustomType.Any; |
| 7 | }; |
| 8 | /** @see https://syncpack.dev/config/dependency-groups */ |
| 9 | dependencyGroups?: DependencyGroup[]; |
| 10 | /** @see https://syncpack.dev/config/format-bugs */ |
| 11 | formatBugs?: boolean; |
| 12 | /** @see https://syncpack.dev/config/format-repository */ |
| 13 | formatRepository?: boolean; |
| 14 | /** @see https://syncpack.dev/config/indent */ |
| 15 | indent?: string; |
| 16 | /** @see https://syncpack.dev/config/max-concurrent-requests */ |
| 17 | maxConcurrentRequests?: number; |
| 18 | /** |
| 19 | * Skip dependency updates published less than this many minutes ago. |
| 20 | * `0` disables the filter. When omitted, the value from the project's |
| 21 | * `pnpm-workspace.yaml` is used; if neither is set, defaults to `1440` |
| 22 | * (one day). Setting it here always overrides the pnpm value. |
| 23 | * @see https://pnpm.io/settings#minimumreleaseage |
| 24 | */ |
| 25 | minimumReleaseAge?: number; |
| 26 | /** @see https://syncpack.dev/semver-groups */ |
| 27 | semverGroups?: SemverGroup.Any[]; |
| 28 | /** @see https://syncpack.dev/update-groups */ |
| 29 | updateGroups?: UpdateGroup.Any[]; |
| 30 | /** @see https://syncpack.dev/config/sort-az */ |
| 31 | sortAz?: string[]; |
| 32 | /** @see https://syncpack.dev/config/sort-exports */ |
| 33 | sortExports?: string[]; |
| 34 | /** @see https://syncpack.dev/config/sort-first */ |
| 35 | sortFirst?: string[]; |
| 36 | /** @see https://syncpack.dev/config/sort-packages */ |
| 37 | sortPackages?: boolean; |
| 38 | /** @see https://syncpack.dev/config/source */ |
| 39 | source?: string[]; |
| 40 | /** @see https://syncpack.dev/config/source-mode */ |
| 41 | sourceMode?: 'replace' | 'extend'; |
| 42 | /** @see https://syncpack.dev/config/strict */ |
| 43 | strict?: boolean; |
| 44 | /** @see https://syncpack.dev/version-groups */ |
| 45 | versionGroups?: VersionGroup.Any[]; |
| 46 | |
| 47 | /** @deprecated */ |
| 48 | dependencyTypes?: never; |
| 49 | /** @deprecated */ |
| 50 | filter?: never; |
| 51 | /** @deprecated */ |
| 52 | lintFormatting?: never; |
| 53 | /** @deprecated */ |
| 54 | lintSemverRanges?: never; |
| 55 | /** @deprecated */ |
| 56 | lintVersions?: never; |
| 57 | /** @deprecated */ |
| 58 | specifierTypes?: never; |
| 59 | } |
| 60 |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…