Removes esbuild and Changes to TSC

This commit is contained in:
2025-07-05 18:32:51 -03:00
parent 0e90afedbf
commit d72f3ec851
5 changed files with 17 additions and 483 deletions

View File

@@ -1,12 +0,0 @@
import { build } from 'esbuild';
build({
entryPoints: ['src/main.ts'],
bundle: true,
target: 'es2018', // Screeps supports ES2018 well
platform: 'node',
format: 'cjs',
outdir: 'dist',
sourcemap: true,
logLevel: 'info',
}).catch(() => process.exit(1));