alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
use tsup
author
Wesley Finck
date
1 year ago
(May 13, 2025, 6:22 PM -0700)
commit
0021129f
0021129fec63dbce9bc31602ff2b96b527804d88
parent
9f4fee16
9f4fee16df00fb7430e2824c524d382592ee25e7
+10
1 changed file
Expand all
Collapse all
Unified
Split
tsup.config.ts
+10
tsup.config.ts
View file
Reviewed
···
1
1
+
import { defineConfig } from "tsup";
2
2
+
3
3
+
export default defineConfig({
4
4
+
entry: ["src/index.ts"],
5
5
+
outDir: "dist",
6
6
+
target: "node18",
7
7
+
format: ["cjs"],
8
8
+
clean: true,
9
9
+
sourcemap: true,
10
10
+
});