UNPKG
num2text
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
Convert numbers into words in multiple languages
plaithep.github.io/num2text/
Plaithep/num2text
num2text
/
tsup.config.ts
11 lines
(9 loc)
•
222 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
: [
'esm'
,
'cjs'
,
'iife'
],
globalName
:
'num2text'
,
outDir
:
'dist'
,
target
:
'es2018'
,
clean
:
true
, })