mirror of
https://github.com/iconify/collections-json.git
synced 2024-11-08 06:15:22 +00:00
17 lines
255 B
TypeScript
17 lines
255 B
TypeScript
import { defineBuildConfig } from 'unbuild';
|
|
|
|
export default defineBuildConfig({
|
|
outDir: './dist',
|
|
entries: [
|
|
{
|
|
input: 'src/index',
|
|
name: 'index',
|
|
},
|
|
],
|
|
clean: true,
|
|
declaration: true,
|
|
rollup: {
|
|
emitCJS: true,
|
|
},
|
|
});
|