UNPKG
web-hid-polyfill
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
github.com/ThibautMarechal/web-hid-polyfill
ThibautMarechal/web-hid-polyfill
web-hid-polyfill
/
tsup.config.ts
10 lines
(9 loc)
•
185 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import { defineConfig }
from
'tsup'
export
default
defineConfig
({
entry
: [
'src/index.ts'
],
format
: [
'cjs'
,
'esm'
],
dts
:
true
,
sourcemap
:
true
,
clean
:
true
,
minify
:
true
, })