UNPKG

ui-thing

Version:

CLI used to add Nuxt 3 components to a project

13 lines (11 loc) 219 B
import { defineConfig } from "tsup"; export default defineConfig({ sourcemap: true, entry: ["src/index.ts"], dts: true, clean: true, format: ["esm"], minify: true, target: "esnext", outDir: "dist", });