Firebase MCP

by gannonh
Verified
import { defineConfig } from 'vitest/config' export default defineConfig({ test: { globals: true, environment: 'node', setupFiles: ['./vitest.setup.ts'], include: ['**/__tests__/**/*.ts?(x)', '**/?(*.)+(spec|test).ts?(x)'], coverage: { provider: 'v8', reporter: ['text', 'html', 'lcov'], exclude: [ 'node_modules/**', 'dist/**', '**/*.d.ts', '**/*.test.ts', '**/*.spec.ts', ], thresholds: { branches: 80, functions: 80, lines: 80, statements: 80, } } } })
ID: x4i8z2xmrq