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 5d62991407f4610ea5979886705daa56ebb9f1f0 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});