15 lines
271 B
TypeScript
15 lines
271 B
TypeScript
|
import { defineConfig } from 'orval'
|
||
|
|
||
|
export default defineConfig({
|
||
|
cakes: {
|
||
|
output: {
|
||
|
mode: 'tags-split',
|
||
|
target: 'src/cakes.ts',
|
||
|
schemas: 'src/shared/model',
|
||
|
client: 'vue-query',
|
||
|
mock: true,
|
||
|
},
|
||
|
input: './cakes.json',
|
||
|
},
|
||
|
})
|