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