mirror of
https://github.com/quartz-community/utils.git
synced 2026-07-22 02:50:27 +00:00
9 lines
185 B
TypeScript
9 lines
185 B
TypeScript
import { defineConfig } from "vitest/config";
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: "node",
|
|
include: ["test/**/*.test.ts"],
|
|
reporters: ["default"],
|
|
},
|
|
});
|