Fixes Storage of SpawnHandlers in Memory

This commit is contained in:
2025-07-06 13:06:29 -03:00
parent 7b48aa345f
commit 0ca79cbaba
5 changed files with 74 additions and 29 deletions

View File

@@ -3,8 +3,9 @@ import { build } from 'esbuild';
build({
entryPoints: ['src/main.ts'],
bundle: true,
target: 'es2018', // Screeps supports ES2018 well
target: 'es6', // Screeps supports ES2018 well
platform: 'node',
tsconfig: 'tsconfig.json',
format: 'cjs',
outdir: 'dist',
sourcemap: true,