- Implemented 10 sub-systems (Economy, Pathfinding, Combat, Selection, Network, Map, Entity/Building/ControlPoint state machines, Orchestrator) - Refactored Custom_Entity.js → Unit.js with 5 components (health, owner, inventory, movement, combat) - Added Jest test suite with 100+ tests (EconomySystem 100%, EntityStateMachine 100%, PathfindingSystem 99%, Unit.js 72%) - All webpack builds pass (0 errors) - BMAD-auto team-respawn flow: 10 parallel sub-agents implemented systems Architecture: Phaser 3 + XState + socket.io + EasyStar Mode: team-respawn Model: custom/ollama-cloud-pro
7 lines
154 B
JavaScript
7 lines
154 B
JavaScript
module.exports = {
|
|
presets: [
|
|
['@babel/preset-env', { targets: { node: 'current' } }],
|
|
['@babel/preset-react', { runtime: 'automatic' }]
|
|
]
|
|
};
|