mirror of
https://github.com/doolijb/serene-pub.git
synced 2026-08-07 07:53:30 +00:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import { sveltekit } from "@sveltejs/kit/vite"
|
|
import { defineConfig } from "vitest/config"
|
|
|
|
export default defineConfig({
|
|
plugins: [sveltekit()],
|
|
test: {
|
|
include: ["src/**/*.{test,spec}.ts"],
|
|
environment: "node"
|
|
}
|
|
})
|