UNPKG
securex
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
1.0.0
Military-grade AES-256-GCM encryption library for tokens and data, a secure JWT alternative
securex
/
rollup.config.js
15 lines
(14 loc)
•
295 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
typescript
from
'@rollup/plugin-typescript'
; export default {
input
:
'src/index.ts'
, output: {
dir
:
'dist'
,
format
:
'es'
, name:
'securex'
, }, plugins: [ typescript({ tsconfig:
'tsconfig.json'
, }), ], }