// @ts-check const { chrome } = require('../../config/build-common'); const { getConfig } = require('../../config/esbuild-config'); module.exports = getConfig({ absWorkingDir: __dirname, entryPoints: [ 'src/index.ts', ], outfile: 'dist/index.cjs', format: 'cjs', platform: 'node', target: chrome, sourcemap: 'inline', external: [ 'electron', ], });