mirror of
https://github.com/iconify/iconify.git
synced 2024-11-08 22:30:59 +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',
|
|
});
|