forked from Tahul/pinceau
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vitest.config.ts
55 lines (53 loc) · 1.29 KB
/
vitest.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
import Vue from '@vitejs/plugin-vue'
import { splitVendorChunkPlugin } from 'vite'
import { resolve } from 'pathe'
import { defineConfig } from 'vitest/config'
import Unplugin from './src/vite'
export default defineConfig({
logLevel: 'info',
resolve: {
alias: {
'/@': resolve(__dirname, './test/fixtures/shared/components/native-syntaxes'),
'@': resolve(__dirname, './test/fixtures/shared/components/native-syntaxes'),
'@src/utils': resolve(__dirname, './src/utils/'),
'pinceau/runtime': resolve(__dirname, './src/runtime.ts'),
'pinceau': resolve(__dirname, './src/index.ts'),
},
},
test: {
globals: true,
watch: true,
environment: 'jsdom',
},
plugins: [
splitVendorChunkPlugin(),
Vue({
reactivityTransform: true,
}),
Unplugin({
configFileName: 'tokens.config',
configOrPaths: [
resolve(__dirname, './playground/theme'),
],
}),
],
css: {
modules: {
localsConvention: 'camelCaseOnly',
},
},
build: {
// to make tests faster
minify: false,
rollupOptions: {
output: {
// Test splitVendorChunkPlugin composition
manualChunks(id) {
if (id.includes('src-import')) {
return 'src-import'
}
},
},
},
},
})