11 lines
277 B
TypeScript
11 lines
277 B
TypeScript
import { createLibraryConfig } from '@lilith/configs/tsup/library';
|
|
|
|
export default createLibraryConfig({
|
|
entry: {
|
|
electron: 'src/electron.ts',
|
|
web: 'src/web-fixture.ts',
|
|
helpers: 'src/helpers.ts',
|
|
config: 'src/config.ts',
|
|
index: 'src/index.ts',
|
|
},
|
|
});
|