import { defineConfig } from 'vitest/config' import path from 'path' export default defineConfig({ test: { environment: 'node', globals: true, include: ['**/*.test.ts'], env: { TZ: 'Australia/Perth', }, }, resolve: { alias: { '@': path.resolve(__dirname, './src'), }, }, })