mirror of
https://github.com/immich-app/immich.git
synced 2026-03-11 20:31:07 -04:00
12 lines
333 B
JavaScript
12 lines
333 B
JavaScript
const esbuild = require('esbuild');
|
|
|
|
esbuild.build({
|
|
entryPoints: ['src/index.ts'],
|
|
outdir: 'dist',
|
|
bundle: true,
|
|
sourcemap: false,
|
|
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
|
|
});
|