17 lines
257 B
TypeScript
17 lines
257 B
TypeScript
const config = {
|
|
clan: {
|
|
output: {
|
|
mode: "tags-split",
|
|
target: "src/api",
|
|
schemas: "src/api/model",
|
|
client: "swr",
|
|
// mock: true,
|
|
},
|
|
input: {
|
|
target: "./openapi.json",
|
|
},
|
|
},
|
|
};
|
|
|
|
export default config;
|