aboutsummaryrefslogtreecommitdiffstats
path: root/packages/trpc/vitest.config.ts
blob: 5af4ad164e46f4c0cf0f3986335044c86343875a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/// <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: {
      "@/*": "./*",
    },
    deps: {
      // TODO: this need to be fixed
      inline: ["liteque"],
    },
  },
});