Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
clone3
/
MyTerminals
like
0
Sleeping
App
Files
Files
Community
4265217
MyTerminals
/
tsup.config.ts
clone3
Upload 9 files
e732311
verified
2 months ago
raw
Copy download link
history
blame
Safe
191 Bytes
import
{ defineConfig,
type
Options
}
from
"tsup"
;
export
default
defineConfig
(
(
options: Options
) =>
({
entryPoints
: [
"src/index.ts"
],
clean
:
true
,
format
: [
"cjs"
],
...options,
}));