fork of hey-api/openapi-ts because I need some additional things
1import { defineConfig } from '@hey-api/openapi-ts';
2
3export default defineConfig({
4 input:
5 'https://gist.githubusercontent.com/seriousme/55bd4c8ba2e598e416bb5543dcd362dc/raw/cf0b86ba37bb54bf1a6bf047c0ecf2a0ce4c62e0/petstore-v3.1.json',
6 output: {
7 format: 'prettier',
8 lint: 'eslint',
9 path: './src/client',
10 },
11 plugins: ['fastify', '@hey-api/sdk'],
12});