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 e4c364e41180cb1f5566254e22d2eb767662de33 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});