mirror of
https://github.com/primefaces/primevue.git
synced 2025-05-08 16:37:15 +00:00
8 lines
154 B
TypeScript
8 lines
154 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['index.ts'],
|
|
format: ['esm'],
|
|
dts: true,
|
|
splitting: false
|
|
});
|