generated from ow3org/web-components-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
58 lines (51 loc) · 1.39 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
/// <reference types="vitest" />
import { resolve } from 'path'
import type { UserConfig } from 'vite'
import Vue from '@vitejs/plugin-vue'
import AutoImport from 'unplugin-auto-import/vite'
import Components from 'unplugin-vue-components/vite'
import pkg from './package.json'
process.env.VITE_APP_VERSION = pkg.version
if (process.env.NODE_ENV === 'production')
process.env.VITE_APP_BUILD_EPOCH = new Date().getTime().toString()
// https://vitejs.dev/config/
const config: UserConfig = {
resolve: {
alias: {
'~': resolve(__dirname, '/src'),
},
},
plugins: [
Vue({
reactivityTransform: true, // https://vuejs.org/guide/extras/reactivity-transform.html
template: {
compilerOptions: {
// treat all tags with a dash as custom elements
isCustomElement: tag => tag.includes('-'),
},
},
}),
// https://github.com/antfu/unplugin-auto-import
AutoImport({
imports: ['vue', '@vueuse/core'],
dts: 'src/auto-imports.d.ts',
eslintrc: {
enabled: true,
},
}),
// https://github.com/antfu/unplugin-vue-components
Components({
dirs: ['src/components'],
extensions: ['vue'],
dts: 'src/components.d.ts',
}),
],
test: {
include: ['tests/**/*.test.ts'],
environment: 'jsdom',
deps: {
inline: ['@vue', '@vueuse', 'vue-demi'],
},
},
}
export default config