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
supmiku39 65482a6890 publish to npmjs; specify FullDate constructor type
change the package name in generated code
2020-04-10 21:17:34 +09:00

23 lines
657 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.configDefault = {
// format
interfacePrefix: 'I',
indentString: ' ',
responsePrefix: '',
// name
schemasName: 'schemas',
IHandlerName: 'IHandler',
IServerAPIName: 'IServerAPI',
IClientAPIName: 'IClientAPI',
ClientAPIName: 'ClientAPI',
routerName: 'apiRouter',
// TS path
apiDirTSPath: '#api',
ServerAPITSPath: '#ServerAPI',
utilsTSPath: '@supmiku39/api-ts-gen/utils',
stateTSPath: null,
// other
outputDir: 'api/generated',
validateStatus: function (status) { return /^2..$/.test(status); },
};