Archived
1
0
Fork 0
This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
api-ts-gen/lib/Config.ts

39 lines
964 B
TypeScript
Raw Normal View History

export type Config = ConfigRequired & ConfigOptional;
export type ConfigUser = ConfigRequired & Partial<ConfigOptional>;
export interface ConfigRequired {
}
export interface ConfigOptional {
// format
interfacePrefix: string;
indentString: string;
// name
schemasName: string;
IHandlerName: string;
ClientAPIName: string;
routerName: string;
// TS path
ServerAPITSPath: string;
utilsTSPath: string;
// other
outputDir: string;
validateStatus: (status: string) => boolean;
clientOnly: boolean;
}
export const configDefault: ConfigOptional = {
// format
interfacePrefix: 'I',
indentString: ' ',
// name
schemasName: 'schemas',
IHandlerName: 'IHandler',
ClientAPIName: 'ClientAPI',
routerName: 'apiRouter',
// TS path
ServerAPITSPath: '#ServerAPI',
2020-05-07 00:26:53 +09:00
utilsTSPath: '@sup39/api-ts-gen/utils',
// other
outputDir: 'api/generated',
validateStatus: (status: string) => /^2..$/.test(status),
clientOnly: false,
};