-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
54 lines (52 loc) · 1.07 KB
/
vite.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
import { defineConfig } from 'vite';
import typescript from '@rollup/plugin-typescript';
import resolve from '@rollup/plugin-node-resolve';
import json from '@rollup/plugin-json';
import terser from '@rollup/plugin-terser';
import { visualizer } from 'rollup-plugin-visualizer';
const terserOptions = {
compress: {
drop_debugger: false,
},
};
export default defineConfig({
build: {
lib: {
entry: './src/index.ts',
name: 'callforwards',
fileName: (format) => `callforwards.${format}.js`
},
sourcemap: true,
rollupOptions: {
output: [
{ // ESM
format: 'es',
dir: 'dist/esm',
entryFileNames: '[name].js',
preserveModules: true,
freeze: false,
},
],
plugins: [
resolve({ preferBuiltins: true }),
json(),
typescript({
tsconfig: './tsconfig.json',
}),
terser(terserOptions),
visualizer({
filename: 'bundle-stats.html',
sourcemap: false,
// template: 'sunburst'
gzipSize: true,
brotliSize: true,
}),
],
},
},
resolve: {
alias: {
callforwards: './src/index',
},
},
});