/** Vitest config for the plugin's unit tests (node environment). */ import { defineConfig } from "vitest/config"; export default defineConfig({ test: { environment: "node", include: ["__tests__/**/*.test.ts", "src/**/*.test.ts"], exclude: ["**/node_modules/**", "**/dist/**"], }, });