aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/esbuild.config.js
blob: 44501bde03135e70e66975bff625921e85124a0d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import { chrome, node } from '../../config/buildConstants.js';
import fileURLToDirname from '../../config/fileURLToDirname.js';
import getEsbuildConfig from '../../config/getEsbuildConfig.js';

export default getEsbuildConfig({
  absWorkingDir: fileURLToDirname(import.meta.url),
  entryPoints: ['src/index.ts'],
  outfile: 'dist/index.mjs',
  format: 'esm',
  // The package that includes this one will have a header comment,
  // no need to have an additional one here.
  banner: {},
  platform: 'node',
  target: [chrome, node],
  external: ['mobx', 'mobx-state-tree', 'zod'],
});