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/dist/Config.js

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,
};