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

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

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