-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.ts
66 lines (64 loc) · 1.75 KB
/
rollup.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import { defineConfig } from 'rollup'
import commonjs from 'rollup-plugin-commonjs'
import del from 'rollup-plugin-delete'
import dts from 'rollup-plugin-dts'
import json from 'rollup-plugin-json'
import resolve from 'rollup-plugin-node-resolve'
import sourceMaps from 'rollup-plugin-sourcemaps'
import { terser } from 'rollup-plugin-terser'
import typescript from 'rollup-plugin-typescript2'
export default defineConfig([
{
input: 'src/index.ts',
output: [
{
file: 'dist/react-auth.min.js',
name: 'reactAuth',
format: 'umd',
sourcemap: true,
globals: {
react: 'React',
'react-dom': 'ReactDOM',
},
},
],
external: ['react'],
watch: {
include: 'src/**',
},
plugins: [
del({ targets: 'dist/*', runOnce: true }),
// Allow json resolution
json(),
// Compile TypeScript files
typescript({ useTsconfigDeclarationDir: true }),
// Allow bundling cjs modules (unlike webpack, rollup doesn't understand cjs)
commonjs(),
// Allow node_modules resolution, so you can use 'external' to control
// which external modules to include in the bundle
// https://github.com/rollup/rollup-plugin-node-resolve#usage
resolve(),
// Resolve source maps to the original source
sourceMaps(),
// Minify output
terser(),
],
},
{
input: './dist/index.d.ts',
output: [{ file: 'dist/react-auth.d.ts', format: 'es' }],
plugins: [
dts(),
del({
targets: 'dist/*',
ignore: [
'dist/react-auth.d.ts',
'dist/react-auth.min.js',
'dist/react-auth.min.js.map',
],
runOnce: true,
hook: 'buildEnd',
}),
],
},
])