fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 12 lines 267 B view raw
1import { defineConfig } from 'tsdown'; 2 3export default defineConfig((options) => ({ 4 clean: true, 5 dts: true, 6 entry: ['src/index.ts', 'src/plugin.ts'], 7 format: ['cjs', 'esm'], 8 minify: !options.watch, 9 shims: false, 10 sourcemap: true, 11 treeshake: true, 12}));