the statusphere demo reworked into a vite/react app in a monorepo
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at abe304a2c9bf139e74af8a1d15ae6a4e734d6e90 13 lines 295 B view raw
1import tsconfigPaths from "vite-tsconfig-paths"; 2import { defineConfig } from "vitest/config"; 3 4export default defineConfig({ 5 test: { 6 coverage: { 7 exclude: ["**/node_modules/**", "**/index.ts"], 8 }, 9 globals: true, 10 restoreMocks: true, 11 }, 12 plugins: [tsconfigPaths()], 13});