mirror of
https://github.com/IT4Change/gradido.git
synced 2026-03-01 12:44:43 +00:00
17 lines
284 B
TypeScript
17 lines
284 B
TypeScript
import { build } from 'esbuild'
|
|
|
|
build({
|
|
entryPoints: ['src/index.ts'],
|
|
outdir: 'build',
|
|
platform: 'node',
|
|
target: 'node18.20.7',
|
|
loader: {
|
|
'.png': 'binary',
|
|
'.jpeg': 'binary',
|
|
'.jpg': 'binary',
|
|
},
|
|
bundle: true,
|
|
sourcemap: true,
|
|
packages: 'external',
|
|
})
|