20 lines
572 B
JavaScript
20 lines
572 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.configDefault = void 0;
|
|
exports.configDefault = {
|
|
// format
|
|
interfacePrefix: 'I',
|
|
indentString: ' ',
|
|
// name
|
|
schemasName: 'schemas',
|
|
IHandlerName: 'IHandler',
|
|
ClientAPIName: 'ClientAPI',
|
|
routerName: 'apiRouter',
|
|
// TS path
|
|
ServerAPITSPath: '#ServerAPI',
|
|
utilsTSPath: '@sup39/api-ts-gen/dist/utils',
|
|
// other
|
|
outputDir: 'api/generated',
|
|
validateStatus: function (status) { return /^2..$/.test(status); },
|
|
clientOnly: false,
|
|
};
|