mirror of
https://github.com/iconify/iconify.git
synced 2024-11-10 07:11:00 +00:00
12 lines
208 B
JavaScript
12 lines
208 B
JavaScript
|
import { defineConfig } from 'tsup';
|
||
|
|
||
|
export default defineConfig({
|
||
|
entry: ['src/iconify.ts'],
|
||
|
format: ['cjs', 'esm'],
|
||
|
splitting: false,
|
||
|
sourcemap: false,
|
||
|
clean: true,
|
||
|
dts: true,
|
||
|
target: 'esnext',
|
||
|
});
|