forked from jdf2e/nutui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.build.disperse.ts
46 lines (43 loc) · 1.14 KB
/
vite.config.build.disperse.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
import { defineConfig } from 'vite';
import vue from '@vitejs/plugin-vue';
import path from 'path';
import configPkg from './src/config.json';
let input = {};
configPkg.nav.map((item) => {
item.packages.forEach((element) => {
let { name, type, exclude } = element;
if (exclude != true) {
input[name] = `./src/packages/__VUE/${name.toLowerCase()}/index${type === 'methods' ? '.ts' : '.vue'}`;
}
});
});
export default defineConfig({
resolve: {
alias: [{ find: '@', replacement: path.resolve(__dirname, './src') }]
},
plugins: [vue()],
build: {
minify: false,
target: 'es2015',
lib: {
entry: '',
name: 'index',
// fileName: (format) => format,
formats: ['es']
},
rollupOptions: {
// 请确保外部化那些你的库中不需要的依赖
external: ['vue', 'vue-router', '@/packages/locale', '@nutui/icons-vue'],
input,
output: {
paths: {
'@/packages/locale': '../locale/lang'
},
dir: path.resolve(__dirname, './dist/packages/_es'),
entryFileNames: '[name].js',
plugins: []
}
},
emptyOutDir: false
}
});