mirror of
https://github.com/simstudioai/sim.git
synced 2026-01-08 22:48:14 -05:00
15 lines
346 B
TypeScript
15 lines
346 B
TypeScript
/// <reference types="vitest" />
|
|
import { defineConfig } from 'vitest/config'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
include: ['src/**/*.test.{ts,tsx}', 'tests/**/*.test.{ts,tsx}'],
|
|
exclude: ['**/node_modules/**', '**/dist/**'],
|
|
},
|
|
resolve: {
|
|
conditions: ['node', 'default'],
|
|
},
|
|
})
|