11 lines
216 B
TypeScript
11 lines
216 B
TypeScript
import { defineConfig } from '@hey-api/openapi-ts';
|
|
|
|
export default defineConfig({
|
|
input: './openapi.json',
|
|
output: {
|
|
path: './generated',
|
|
client: '@hey-api/client-fetch',
|
|
importFileExtension: '.js',
|
|
},
|
|
});
|