mirror of
https://github.com/IT4Change/gradido.git
synced 2026-02-06 09:56:05 +00:00
16 lines
369 B
TypeScript
16 lines
369 B
TypeScript
import { esbuildDecorators } from '@anatine/esbuild-decorators'
|
|
import { build } from 'esbuild'
|
|
|
|
build({
|
|
entryPoints: ['src/index.ts'],
|
|
outdir: 'build',
|
|
platform: 'node',
|
|
target: 'node18.20.7',
|
|
bundle: true,
|
|
keepNames: true,
|
|
// legalComments: 'inline',
|
|
external: ['sodium-native'],
|
|
plugins: [esbuildDecorators()],
|
|
minify: true,
|
|
sourcemap: true,
|
|
}) |