-
Notifications
You must be signed in to change notification settings - Fork 27
/
vite.config.ts
62 lines (60 loc) · 1.46 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
import type { SemVer } from 'semver'
import vue from '@vitejs/plugin-vue'
import { visualizer } from 'rollup-plugin-visualizer'
import { parse } from 'semver'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import { version } from 'vue'
import { name, PascalCasedName } from './package.json'
const { major, minor } = parse(version) as SemVer
export default {
optimizeDeps: {
exclude: ['vue-demi'],
},
build: {
lib: {
name,
entry: 'src/index.ts',
},
sourcemap: true,
rollupOptions: {
external: [
'vanilla-jsoneditor',
'vue-demi',
],
output: {
globals: {
[name]: PascalCasedName,
},
},
},
},
plugins: [
{
name: 'html-transform',
transformIndexHtml(html: string) {
return html.replace(/\{\{ NAME \}\}/, name).replace(/\{\{ VUE_VERSION \}\}/g, String(major === 3 ? major : `${major}.${minor}`))
},
},
/* dts({
rollupTypes: true,
}), */
AutoImport({
// targets to transform
include: [
/\.[tj]sx?$/, // .ts, .tsx, .js, .jsx
/\.vue$/,
/\.vue\?vue/, // .vue
/\.md$/, // .md
],
// global imports to register
imports: [
// presets
(major === 3 || (major === 2 && minor >= 7)) ? 'vue' : '@vue/composition-api',
],
}),
Components(),
{ ...visualizer(), apply: 'build' },
vue(),
],
}