1import { defineConfig } from '@hey-api/openapi-ts';
2
3export default defineConfig({
4 input: './openapi.json',
5 logs: {
6 path: './logs',
7 },
8 output: {
9 path: './src/client',
10 postProcess: ['oxfmt', 'eslint'],
11 },
12 plugins: ['nestjs', '@hey-api/sdk'],
13});