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

import { defineConfig } from "vitest/config";

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