-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsup.config.ts
More file actions
24 lines (18 loc) · 842 Bytes
/
tsup.config.ts
File metadata and controls
24 lines (18 loc) · 842 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*****************************************************************************************************************/
// @author Michael Roberts <michael@observerly.com>
// @package @observerly/fits
// @license Copyright © 2021-2025 observerly
/*****************************************************************************************************************/
import { defineConfig } from 'tsup'
/*****************************************************************************************************************/
export default defineConfig({
entry: ['src/index.ts'],
format: ['cjs', 'esm'],
dts: true,
minify: true,
splitting: false,
sourcemap: true,
treeshake: true,
clean: true,
})
/*****************************************************************************************************************/