forked from megafetis/vue3-treeselect
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathvite.config.js
62 lines (59 loc) · 1.38 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// vite.config.ts
import { defineConfig } from "vite";
import vueJsx from '@vitejs/plugin-vue-jsx';
import typescript from "@rollup/plugin-typescript";
import path from "path";
import { typescriptPaths } from "rollup-plugin-typescript-paths";
import vue from '@vitejs/plugin-vue';
export default defineConfig({
plugins: [
vue(),
vueJsx({
// options are passed on to @vue/babel-plugin-jsx
}),
],
resolve: {
alias: {
"~": path.resolve(__dirname, "./src"),
'@': path.resolve(__dirname, "./src"),
},
},
server: {
port: 3000,
},
build: {
manifest: true,
minify: true,
reportCompressedSize: true,
lib: {
entry: path.resolve(__dirname, "src/index.js"),
name:'vue3-treeselect',
fileName: "vue3-treeselect",
formats: ["es", "cjs"],
},
rollupOptions: {
/*input: {
main: path.resolve(__dirname, 'demo/index.html'),
//nested: resolve(__dirname, 'nested/index.html'),
},*/
external: ['vue'],
output: {
assetFileNames: "vue3-treeselect.[ext]",
exports: "named",
globals: {
vue: 'Vue',
},
},
plugins: [
typescriptPaths({
preserveExtensions: true,
}),
typescript({
sourceMap: false,
declaration: true,
outDir: "dist",
}),
],
},
},
});