14 lines
255 B
TypeScript
14 lines
255 B
TypeScript
import { defineBuildConfig } from 'unbuild';
|
|
|
|
export default defineBuildConfig({
|
|
clean: true,
|
|
declaration: true,
|
|
entries: [
|
|
'src/index',
|
|
'src/constants/index',
|
|
'src/utils/index',
|
|
'src/colorful/index',
|
|
'src/cache/index',
|
|
],
|
|
});
|