[READ-ONLY] Mirror of https://github.com/danielroe/zero-vue. Vue bindings for Zero
sync
vue
zero
361 B
18 lines
1import { fileURLToPath } from 'node:url'
2import { defineConfig } from 'vitest/config'
3
4export default defineConfig({
5 resolve: {
6 alias: {
7 'zero-vue': fileURLToPath(
8 new URL('./src/index.ts', import.meta.url).href,
9 ),
10 },
11 },
12 test: {
13 coverage: {
14 include: ['src'],
15 reporter: ['text', 'json', 'html'],
16 },
17 },
18})