Skip to content

Commit a969095

Browse files
committed
fix(types): allow additional customTypes properties
Refs #255
1 parent fccf805 commit a969095

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

npm/syncpack.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@ export interface RcFile {
22
/** @see https://jamiemason.github.io/syncpack/integrations/json-schema */
33
$schema?: string;
44
/** @see https://jamiemason.github.io/syncpack/config/custom-types */
5-
customTypes?: Record<string, CustomType.Any>;
5+
customTypes?: {
6+
[name: string]: CustomType.Any;
7+
};
68
/** @see https://jamiemason.github.io/syncpack/config/dependency-groups */
79
dependencyGroups?: DependencyGroup[];
810
/** @see https://jamiemason.github.io/syncpack/config/format-bugs */

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"Aparajita Fishman (https://github.com/aparajita)",
1515
"Artur Wierzbicki (https://github.com/ArturWierzbicki)",
1616
"Chase Holdren (https://github.com/chaseholdren)",
17+
"Chase Tamnoon (https://github.com/chase-tamnoon)",
1718
"Daniel Silva (https://github.com/dsilvasc)",
1819
"Elchin Valiyev (https://github.com/evaliyev)",
1920
"Gabriel Pereira Woitechen (https://github.com/wtchnm)",

0 commit comments

Comments
 (0)