aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/esbuild.config.js
blob: fbaa6f13e15f10812e4b6bb83f38890239498850 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { chrome, fileURLToDirname } from '../../config/build-common.js';
import { getConfig } from '../../config/esbuild-config.js';

export default getConfig({
  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,
  external: [
    'mobx',
    'mobx-state-tree',
    'zod',
  ],
});