We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57d0d14 commit 1035222Copy full SHA for 1035222
src/config.ts
@@ -51,7 +51,8 @@ export function normalizeConfig(rawConfig: RawConfig): Config {
51
skipIsAbstractType: rawConfig.skipIsAbstractType ?? true,
52
typesPrefix: rawConfig.typesPrefix ?? '',
53
typesSuffix: rawConfig.typesSuffix ?? '',
54
- // eslint-disable-next-line @typescript-eslint/no-explicit-any
55
- convert: convertFactory(rawConfig as any),
+ convert: rawConfig.namingConvention
+ ? convertFactory({ namingConvention: rawConfig.namingConvention })
56
+ : convertFactory({}),
57
};
58
}
0 commit comments