11 lines
303 B
TypeScript
11 lines
303 B
TypeScript
import { createLibraryConfig } from '@lilith/lix-configs/tsup/library';
|
|
|
|
export default createLibraryConfig({
|
|
entry: {
|
|
index: 'src/index.ts',
|
|
hooks: 'src/hooks/index.ts',
|
|
components: 'src/components/index.ts',
|
|
},
|
|
// Inject CSS into JS bundle for UI components
|
|
injectStyle: true,
|
|
});
|