robotank/server-nodejs/esbuild.mjs

14 lines
309 B
JavaScript
Raw Permalink Normal View History

2025-03-03 02:17:50 +01:00
// SPDX-License-Identifier: GPL-3.0-or-later
// Author: Sascha Nitsch https://contentnation.net/@grumpydevelop
import * as esbuild from 'esbuild'
await esbuild.build({
entryPoints: ['index.ts'],
bundle: true,
platform: 'node',
target: ['node10.4'],
packages: 'external',
outfile: 'index.js',
})