···77 it('should create a unnamed service if tags are empty', () => {
88 setConfig({
99 client: 'fetch',
1010+ configFile: '',
1011 debug: false,
1112 dryRun: true,
1213 exportCore: true,
+4-1
packages/openapi-ts/src/types/client.ts
···66 server: string;
77 services: Service[];
88 /**
99- * Map of generated types, keys are type names
99+ * Map of generated types where type names are keys. This is used to track
1010+ * uniquely generated types as we may want to deduplicate if there are
1111+ * multiple definitions with the same name but different value, or if we
1212+ * want to transform names.
1013 */
1114 types: Record<string, ModelMeta>;
1215 version: string;
+5
packages/openapi-ts/src/types/config.ts
···1919 | 'node'
2020 | 'xhr';
2121 /**
2222+ * Path to the config file. Set this value if you don't use the default
2323+ * config file name, or it's not located in the project root.
2424+ */
2525+ configFile?: string;
2626+ /**
2227 * Run in debug mode?
2328 * @default false
2429 */