-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
46 lines (43 loc) · 1.21 KB
/
vite.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
import { defineConfig } from 'vite';
import path from 'path';
import { terser } from 'rollup-plugin-terser';
import banner from 'vite-plugin-banner';
const bannerText = `/*
* TickWatch-js v1.1.2
* (c) HichemTech
* Released under the MIT License.
* Github: github.com/HichemTab-tech/TickWatch-js
*/
`;
// noinspection JSUnusedGlobalSymbols
export default defineConfig(({ command }) => {
const isProduction = command === 'build';
return {
build: {
lib: {
entry: path.resolve(__dirname, 'index.js'),
name: 'TickWatch-js',
fileName: (format) => `TickWatch${format === 'es' ? '' : '.min'}.js`,
formats: ['umd'],
},
rollupOptions: {
output: {
globals: {
this: 'this',
},
},
plugins: [
banner(bannerText),
isProduction && terser({
format: {
comments: false,
},
}),
],
},
},
server: {
port: 5001
}
};
});