SPB Git

spb/vquant Public MIT

VibeQuant — AI-powered institutional-grade financial intelligence platform.

TypeScript 84.3% Python 11.7% JavaScript 1.6% CSS 1.5% HTML 0.7%
1.1 KB · 41 lines typescript
Raw Blame History
1/*2 * =============================================================================3 *  VibeQuant (vquant) — AI-Powered Financial Intelligence Platform4 * -----------------------------------------------------------------------------5 *  File:      vitest.config.ts6 *7 *  Author:    Simon-Pierre Boucher8 *  Contact:   contact@spboucher.ai9 *  Website:   https://www.spboucher.ai10 *  Demo:      https://www.vquant.ai11 *  License:   MIT (see LICENSE)12 *13 *  Copyright © 2026 Simon-Pierre Boucher. All rights reserved.14 * =============================================================================15 */1617import { defineConfig } from "vitest/config";18import react from "@vitejs/plugin-react";19import path from "path";2021export default defineConfig({22  plugins: [react()],23  test: {24    globals: true,25    environment: "jsdom",26    setupFiles: ["./client/src/test/setup.ts"],27    include: [28      "client/src/**/*.test.{ts,tsx}",29      "server/**/*.test.ts",30      "shared/**/*.test.ts",31    ],32    css: false,33  },34  resolve: {35    alias: {36      "@": path.resolve(__dirname, "client/src"),37      "@shared": path.resolve(__dirname, "shared"),38    },39  },40});41