blob: 24125443cc10178ed41c70f66da1981cf9ad2a9d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
import { defineConfig } from 'tsup'
export default defineConfig({
entry: ['assets/ts/'],
splitting: false,
sourcemap: true,
clean: true,
outDir: 'assets/js/generated'
})
|