UNPKG
@iocium/favicon-fetcher
Version:
latest (1.5.0)
1.5.0
1.4.0
1.3.0
1.2.0
1.1.0
1.0.0
Favicon and BIMI logo fetcher for Cloudflare Workers and browser-compatible environments
@iocium/favicon-fetcher
/
rollup.config.js
18 lines
(16 loc)
•
307 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import
typescript
from
'@rollup/plugin-typescript'
; export default {
input
:
'src/index.ts'
, output: [ { file:
'dist/bundle.umd.js'
,
format
:
'umd'
, name:
'FaviconFetcherLib'
}, { file:
'dist/bundle.esm.js'
,
format
:
'esm'
} ], plugins: [typescript()] };