UNPKG
repture
Version:
latest (1.0.0)
1.0.0
Lightweight JavaScript ES6 based utility library
github.com/theahmadzai/repture
theahmadzai/repture
repture
/
rollup.config.js
18 lines
(16 loc)
•
309 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/main.ts'
,
output
: {
name
:
'repture'
,
file
:
'./dist/repture.js'
,
format
:
'umd'
,
exports
:
'named'
,
sourcemap
:
true
},
plugins
: [
typescript
({
typescript
:
require
(
'typescript'
) }) ] };