aboutsummaryrefslogtreecommitdiffstats
path: root/apps/web/vitest.config.ts
blob: c3d02f71782232d53205e02065f7b1205a582b1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// <reference types="vitest" />

import { defineConfig } from "vitest/config";
import tsconfigPaths from "vite-tsconfig-paths";

// https://vitejs.dev/config/
export default defineConfig({
  plugins: [tsconfigPaths()],
  test: {
    alias: {
      "@/*": "./*",
    },
  },
});