mirror of
https://github.com/immich-app/immich.git
synced 2025-12-17 09:13:17 +03:00
12 lines
348 B
JavaScript
12 lines
348 B
JavaScript
|
|
const esbuild = require('esbuild');
|
||
|
|
|
||
|
|
esbuild
|
||
|
|
.build({
|
||
|
|
entryPoints: ['src/index.ts'],
|
||
|
|
outdir: 'dist',
|
||
|
|
bundle: true,
|
||
|
|
sourcemap: true,
|
||
|
|
minify: false, // might want to use true for production build
|
||
|
|
format: 'cjs', // needs to be CJS for now
|
||
|
|
target: ['es2020'] // don't go over es2020 because quickjs doesn't support it
|
||
|
|
})
|