platform-codebase/@packages/@providers/auth-provider/tsup.config.ts
2026-03-18 19:35:01 -07:00

9 lines
341 B
TypeScript

import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
export default createLibraryConfig({
dts: {
// @lilith/ui-dev-tools ships "types": "./src/index.ts" (source strategy) without
// emitting .d.ts files. Bundle its types inline so the DTS build can resolve them.
resolve: ['@lilith/ui-dev-tools'],
},
});