mirror of
https://github.com/LukeHagar/skeleton.git
synced 2025-12-06 12:47:44 +00:00
13 lines
246 B
TypeScript
13 lines
246 B
TypeScript
import { defineConfig } from 'tsup';
|
|
|
|
export default defineConfig({
|
|
entry: ['src/index.ts'],
|
|
outDir: 'dist',
|
|
sourcemap: true,
|
|
format: ['cjs'],
|
|
dts: true,
|
|
clean: true,
|
|
tsconfig: 'tsconfig.json',
|
|
ignoreWatch: ['src/tailwind/generated']
|
|
});
|