-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
65 lines (63 loc) · 1.48 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
55
56
57
58
59
60
61
62
63
64
65
import typescript from "@rollup/plugin-typescript";
import path from "path";
import { typescriptPaths } from "rollup-plugin-typescript-paths";
import { visualizer } from "rollup-plugin-visualizer";
import progress from "vite-plugin-progress";
import colors from "picocolors";
import { defineConfig } from "vite";
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
// https://github.com/jeddygong/vite-plugin-progress
progress({
format: `Building ${colors.green("[:bar]")} :percent :eta`,
total: 100,
width: 60,
// complete: "=",
// incomplete: "",
}),
],
resolve: {
alias: [
{
find: "~",
replacement: path.resolve(__dirname, "./src"),
},
],
},
server: {
port: 3000,
},
// preview: {
// port: 3124,
// },
// https://vitejs.dev/guide/build.html#library-mode
build: {
manifest: true,
minify: true,
reportCompressedSize: true,
lib: {
entry: path.resolve(__dirname, "src/main.ts"),
fileName: "main",
formats: ["es", "cjs"],
},
rollupOptions: {
external: [],
plugins: [
typescriptPaths({
preserveExtensions: true,
}),
typescript({
sourceMap: false,
declaration: true,
outDir: "dist",
exclude: ["**/__tests__"],
}),
visualizer({
title: "visualizer - vite-tsup-lib-typedoc",
template: "network",
}),
],
},
},
});