98ab975fb9
Build and Publish Mana Loop Docker Image / build-and-publish (push) Successful in 4m28s
- Updated AGENTS.md to include store/ directory and clarify store architecture - Updated GAME_BRIEFING.md Code Architecture section with store/ and legacy store info - Updated skills.md with skill state management information - Includes other refactoring changes (store hooks, component updates, etc.)
18 lines
357 B
TypeScript
Executable File
18 lines
357 B
TypeScript
Executable File
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
environment: 'jsdom',
|
|
globals: true,
|
|
setupFiles: ['./src/test/setup.ts'],
|
|
include: ['src/**/*.{test,spec}.ts'],
|
|
coverage: {
|
|
reporter: ['text', 'json'],
|
|
exclude: [
|
|
'node_modules/**',
|
|
'src/test/**',
|
|
],
|
|
},
|
|
},
|
|
});
|