- 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)
6 lines
101 B
JavaScript
6 lines
101 B
JavaScript
module.exports = {
|
|
presets: [
|
|
['@babel/preset-env', { targets: { node: 'current' } }],
|
|
],
|
|
};
|