mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-10 04:57:28 +02:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
include: ["**/*.test.ts"],
|
|
exclude: ["**/node_modules/**", "**/*.spec.ts"],
|
|
},
|
|
});
|