mirror of
https://github.com/DayuanJiang/next-ai-draw-io.git
synced 2026-01-10 02:02:31 +08:00
12 lines
305 B
TypeScript
12 lines
305 B
TypeScript
|
|
import { defineConfig } from "vitest/config"
|
||
|
|
import react from "@vitejs/plugin-react"
|
||
|
|
import tsconfigPaths from "vite-tsconfig-paths"
|
||
|
|
|
||
|
|
export default defineConfig({
|
||
|
|
plugins: [tsconfigPaths(), react()],
|
||
|
|
test: {
|
||
|
|
environment: "jsdom",
|
||
|
|
include: ["tests/**/*.test.{ts,tsx}"],
|
||
|
|
},
|
||
|
|
})
|