-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
89 lines (82 loc) · 2.12 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
/// <reference types="vite/client" />
import { fileURLToPath, URL } from "node:url";
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import { resolve } from "path";
import dts from "vite-plugin-dts";
import { viteStaticCopy } from "vite-plugin-static-copy";
export default defineConfig(({ command, mode }) => {
return {
plugins: [
dts(),
viteStaticCopy({
targets: [
{
src: "./src/models/app-options-model.ts",
dest: "models",
},
{
src: "./src/models/messages.ts",
dest: "models",
},
],
}),
vue(),
],
resolve: {
alias: {
"@": fileURLToPath(new URL("./src", import.meta.url)),
},
},
define: {
"process.env.NODE_ENV": JSON.stringify(mode),
},
build: {
lib: {
// Could also be a dictionary or array of multiple entry points
entry: resolve(__dirname, "src/index.ts"),
name: "TockVueKit",
formats: ["es", "umd", "cjs", "iife"],
fileName: (format, entryName: string) => {
const name = "tock-vue-kit";
switch (format) {
case "es":
return name + ".js";
break;
case "umd":
return name + ".umd.js";
break;
case "cjs":
return name + ".cjs";
break;
case "iife":
return name + ".iife.js";
break;
default:
return name + ".js";
break;
}
},
},
rollupOptions: {
external: ["vue"],
output: {
globals: {
vue: "Vue",
},
},
},
// rollupOptions: {
// output: {
// // format: "es",
// // entryFileNames: `assets/[name].js`,
// // chunkFileNames: `assets/[name].js`,
// // assetFileNames: `assets/[name].[ext]`,
// },
// treeshake: true,
// // preserveEntrySignatures: 'strict'
// },
minify: mode === "production",
},
};
});