UNPKG
amadeus-ts
Version:
latest (5.1.1)
5.1.1
5.1.0
5.0.3
5.0.2
5.0.1
5.0.0
4.0.3
4.0.2
4.0.1
4.0.0
3.0.0
2.2.0
2.1.0
2.0.1
2.0.0
1.5.0
1.4.0
1.3.1
1.3.0
1.2.1
1.2.0
1.1.0
1.0.0
Node library for the Amadeus travel APIs Written in TypeScript
developers.amadeus.com
amadeus-ts
/
tsup.config.ts
10 lines
(8 loc)
•
182 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import { defineConfig }
from
"tsup"
; export
default
defineConfig
({
entry
: [
"./src/amadeus/index.ts"
],
format
: [
"cjs"
,
"esm"
],
dts
:
true
,
splitting
:
true
,
clean
:
true
, });