Files
iron-requiem/babel.config.js
Kay Kayyali 400cc8f243 feat(s1-integration): wire all Slice 1 components into working scene
- main.js now registers PreloadScene + MainGame (was empty [])
- MainGame.js replaces placeholders with real Tank, Turret, VisionMask,
  PatternManager, SaveManager, CommanderHatch imports
- New PreloadScene generates placeholder textures and loads tundra_bg
- Tank gains public update() for MainGame delegation per frame
- CommanderHatch gains update() with edge-triggered E-key toggle
- Added babel-jest transform for ESM test support
- Added webpack @/ alias resolution
- 11 integration tests pass (tests/integration/slice1-wiring.test.js)
- Container healthy, serving at iron-requiem.damascusfront.net (HTTP 200)
- Pre-existing tests: 43/45 pass (2 pre-existing failures unchanged)
2026-05-23 06:59:57 +00:00

6 lines
101 B
JavaScript

module.exports = {
presets: [
['@babel/preset-env', { targets: { node: 'current' } }],
],
};