/** Vitest config for the Linear plugin: runs unit/behavior specs under src, excluding live and e2e suites. */ import { defineConfig } from "vitest/config"; export default defineConfig({ test: { include: ["src/**/*.test.ts", "src/**/__tests__/**/*.test.ts", "__tests__/**/*.test.ts"], exclude: ["dist/**", "**/node_modules/**", "**/*.live.test.ts", "**/*.e2e.test.ts"], environment: "node", }, });