mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-21 07:21:46 +01:00
19 lines
271 B
TypeScript
19 lines
271 B
TypeScript
import { Options } from 'tsup'
|
|
|
|
const config: Options = {
|
|
splitting: false,
|
|
format: ['esm'],
|
|
entryPoints: [
|
|
'src/index.ts'
|
|
],
|
|
external: [
|
|
'@nuxt/kit',
|
|
'@unocss/preset-uno'
|
|
],
|
|
target: 'node14',
|
|
clean: true,
|
|
dts: true
|
|
}
|
|
|
|
export default config
|