UNPKG
darian
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
A Naive state container for JavaScript apps
github.com/Casper-MAGI/Darian
Casper-MAGI/Darian
darian
/
rollup.config.js
15 lines
(14 loc)
•
280 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
typescript
from
'rollup-plugin-typescript2'
export
default
{
input
:
'src/index.ts'
,
plugins
: [
typescript
({
tsconfig
:
"tsconfig.json"
, }), ],
output
: {
file
:
'dist/index.js'
,
format
:
'cjs'
, },
external
: [
'rx'
,
'react'
] }