Files
my-links/config/tuyau.ts

17 lines
299 B
TypeScript

import { defineConfig } from '@tuyau/core'
const tuyauConfig = defineConfig({
codegen: {
/**
* Filters the definitions and named routes to be generated
*/
// definitions: {
// only: [],
// }
// routes: {
// only: [],
// }
}
})
export default tuyauConfig