mirror of
https://github.com/trustgraph-ai/trustgraph.git
synced 2026-07-01 17:39:39 +02:00
8 lines
214 B
TypeScript
8 lines
214 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
export default defineConfig({
|
|
test: {
|
|
include: ["src/**/*.test.ts", "src/**/*.spec.ts"],
|
|
exclude: ["dist/**", "node_modules/**"],
|
|
globals: true,
|
|
},
|
|
});
|