Co-authored-by-agent: Co-authored-by: Codex <267193182+codex@users.noreply.github.com>
12 lines
216 B
TypeScript
12 lines
216 B
TypeScript
import Vue from '@vitejs/plugin-vue'
|
|
|
|
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
root: import.meta.dirname,
|
|
plugins: [Vue()],
|
|
test: {
|
|
include: ['src/**/*.test.ts'],
|
|
},
|
|
})
|