SPB Git

spb/earth-now Public License

earth-now.co — real-time planetary dashboard: live world metrics modeled, not streamed.

TypeScript 93% Shell 2.3% SQL 1.4% JavaScript 1.3% Dockerfile 1.2% CSS 0.8%
624 B · 24 lines typescript
Raw Blame History
1/**2 * earth-now.co3 * Author:  Simon-Pierre Boucher4 * Contact: contact@spboucher.ai5 * File:    apps/web/vitest.config.ts6 * Purpose: Vitest configuration for apps/web — node environment by default (jsdom via per-file pragma), excludes .next build output7 */89import { defineConfig } from "vitest/config";10import { fileURLToPath } from "node:url";1112export default defineConfig({13  resolve: {14    alias: {15      "@": fileURLToPath(new URL(".", import.meta.url)),16    },17  },18  test: {19    environment: "node",20    include: ["test/**/*.test.ts"],21    exclude: ["**/node_modules/**", "**/.next/**", "**/dist/**"],22  },23});24