summaryrefslogtreecommitdiff
path: root/apps/web/vitest.config.ts
blob: c0446b516269c1d6503c9610d50d76980e1bb4e0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { defineConfig } from "vitest/config"
import { resolve } from "path"

export default defineConfig({
  test: {
    include: ["lib/**/*.test.ts"],
  },
  resolve: {
    alias: {
      "@": resolve(__dirname, "."),
    },
  },
})