import { defineConfig } from 'vitest/config'; import { nxViteTsPaths } from '@nx/vite/plugins/nx-tsconfig-paths.plugin'; export default defineConfig({ root: __dirname, cacheDir: '../../node_modules/.vite/libs/shared', plugins: [nxViteTsPaths()], test: { watch: false, globals: true, environment: 'node', reporters: ['default'], }, });