| 123456789101112 |
- import { BuildOptions } from 'esbuild'
- import path from 'path'
-
- const config: BuildOptions = {
- platform: 'node',
- entryPoints: [path.resolve('src/main/main.ts'), path.resolve('src/main/preload.ts')],
- bundle: true,
- target: 'node16.5.0', // electron version target
- sourcemap: true,
- }
-
- export default config
|