the universal sandbox runtime for agents and humans. pocketenv.io
sandbox openclaw agent claude-code vercel-sandbox deno-sandbox cloudflare-sandbox atproto sprites daytona
7
fork

Configure Feed

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

at main 16 lines 384 B view raw
1import { defineConfig } from "vitest/config"; 2import tsconfigPaths from "vite-tsconfig-paths"; 3 4export default defineConfig({ 5 plugins: [tsconfigPaths()], 6 test: { 7 environment: "node", 8 globals: true, 9 include: ["src/**/*.test.ts"], 10 coverage: { 11 provider: "v8", 12 include: ["src/**/*.ts"], 13 exclude: ["src/**/*.test.ts", "src/index.ts"], 14 }, 15 }, 16});