tpmjs/packages/ui/vitest.config.ts
Ajax Davis e904e8d319 style: apply Biome formatting and auto-fixes
- Format 78 files, fixed 42 files total
- Apply safe lint fixes (non-null assertions converted to optional chaining)
- Remaining lint warnings are non-blocking (test code, a11y suggestions)

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-26 18:59:49 +10:00

9 lines
178 B
TypeScript

import { defineConfig } from "vitest/config";
export default defineConfig({
test: {
globals: true,
environment: "happy-dom",
setupFiles: ["./src/test-setup.ts"],
},
});