-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
98 lines (95 loc) · 1.67 KB
/
rollup.config.js
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
import esbuild from 'rollup-plugin-esbuild'
import json from '@rollup/plugin-json'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import { apiExtractor } from './rollup-plugins/apiExtractor'
import { terser } from "rollup-plugin-terser";
import { minifySql } from './rollup-plugins/minifySql'
import { comlink } from './rollup-plugins/comlink'
const nodeExternals = [
'assert',
'async_hooks',
'buffer',
'child_process',
'cluster',
'console',
'constants',
'crypto',
'dgram',
'dns',
'domain',
'events',
'fs',
'http',
'http2',
'https',
'inspector',
'module',
'net',
'os',
'path',
'perf_hooks',
'process',
'punycode',
'querystring',
'readline',
'repl',
'stream',
'string_decoder',
'sys',
'timers',
'tls',
'trace_events',
'tty',
'url',
'util',
'v8',
'vm',
'worker_threads',
'zlib'
]
export default {
input: './src/index.ts',
output: {
dir: 'dist',
format: 'cjs'
},
plugins: [
{
resolveFileUrl({ relativePath }) {
return JSON.stringify('./dist/' + relativePath);
},
},
resolve(),
commonjs(),
comlink({ type: 'node' }),
apiExtractor(),
esbuild({
target: 'es2018'
}),
minifySql(),
json(),
terser()
],
external: [
...nodeExternals,
'docx-templates-to-pdf',
'apollo-server-express',
'compression',
'cors',
'express',
'graphql',
'graphql-subscriptions',
'js-sha3',
'nodemailer',
'promise-mysql',
'depd',
'jsonwebtoken',
'body-parser',
'swagger-ui-express',
'express-rate-limit',
'web-push',
'axios',
'xlsx-template'
]
}