fork of hey-api/openapi-ts because I need some additional things
at feat/skip-token 14 lines 401 B view raw
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 logs: { 7 path: './logs', 8 }, 9 output: { 10 path: './src/client', 11 postProcess: ['oxfmt', 'eslint'], 12 }, 13 plugins: ['fastify', '@hey-api/sdk'], 14});