This repository has been archived on 2025-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
app-template/config/esbuild.config.mjs
2025-03-12 20:57:30 +08:00

12 lines
232 B
JavaScript

import { build } from 'esbuild';
build({
entryPoints: ['src/index.ts'],
bundle: true,
outfile: 'dist/index.js',
platform: 'browser',
target: 'esnext',
sourcemap: false,
format: 'esm',
}).catch(() => process.exit(1));