import { defineConfig } from 'vitest/config'; import tsconfigPaths from 'vite-tsconfig-paths'; import path from 'path'; export default defineConfig({ define: { __DEV__: true, __TEST__: true, __BROWSER__: false, __VERSION__: '"unknown"', __APP_VERSION__: '"0.0.0"', }, plugins: [tsconfigPaths()], test: { environment: 'jsdom', include: [ path.resolve(__dirname, '__tests__/*.spec.ts'), path.resolve(__dirname, '__tests__/*.spec.tsx'), ], globals: true, testTimeout: 10000, }, });