17 lines
256 B
TypeScript
17 lines
256 B
TypeScript
import { defineConfig } from "@hey-api/openapi-ts";
|
|
|
|
export default defineConfig({
|
|
input: "./openapi.json",
|
|
output: {
|
|
path: "./src/client"
|
|
},
|
|
plugins: [
|
|
"legacy/axios",
|
|
{
|
|
name: "@hey-api/sdk",
|
|
asClass: true,
|
|
operationId: true
|
|
}
|
|
]
|
|
});
|