-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.lib.config.js
executable file
·50 lines (49 loc) · 1.08 KB
/
vite.lib.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
import {defineConfig} from 'vite'
import vueI18n from '@intlify/vite-plugin-vue-i18n'
import vue from '@vitejs/plugin-vue'
import dts from 'vite-plugin-dts'
import {resolve} from 'path'
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
vue(),
vueI18n({
fullInstall: false,
runtimeOnly: true,
compositionOnly: false,
defaultSFCLang: 'json',
globalSFCScope: true,
}),
dts()
],
build: {
outDir: 'dist',
lib: {
entry: resolve(__dirname, 'src', 'components', 'PasswordStrength.vue'),
name: 'PasswordStrength',
formats: ['es', 'cjs'],
fileName: format => `password-strength.${format}.js`
},
ssr: false,
rollupOptions: {
external: ['vue', 'vue-i18n'],
output: {
globals: {
vue: 'Vue',
'vue-i18n': 'VueI18n'
}
}
}
},
optimizeDeps: {
esbuildOptions: {
treeShaking: true,
minify: true,
charset: 'utf8',
sourcemap: false,
logLevel: 'warning',
color: true,
incremental: true
}
}
})