* docs: plan load render workspace alignment * fix: normalize workspace status hydration * fix: avoid duplicate backlog hydration load * refactor: use sprint store active story * refactor: migrate solo to workspace store * chore: stabilize verification ignores
17 lines
429 B
TypeScript
17 lines
429 B
TypeScript
import { configDefaults, defineConfig } from 'vitest/config'
|
|
import path from 'path'
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
setupFiles: ['tests/setup.ts'],
|
|
exclude: [...configDefaults.exclude, '**/.claude/**'],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
'@': path.resolve(__dirname, '.'),
|
|
'server-only': path.resolve(__dirname, 'tests/stubs/server-only.ts'),
|
|
},
|
|
},
|
|
})
|