UNPKG
lastfm-api-lib
Version:
latest (1.1.0)
1.1.0
1.0.0
A TypeScript library for interacting with the Last.fm API
github.com/shinyczxx/lastfm-api-lib
lastfm-api-lib
/
tsup.config.ts
11 lines
(10 loc)
•
208 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import { defineConfig }
from
'tsup'
export
default
defineConfig
({
entry
: [
'src/index.ts'
],
format
: [
'cjs'
,
'esm'
],
dts
:
true
,
sourcemap
:
true
,
clean
:
true
,
splitting
:
false
,
target
:
'es2022'
})