aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/vite.config.js
blob: 5fb1ceb4cfe856e288e0c858fb98e43e0481899d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// @ts-check

import { builtinModules } from 'module';

import { chrome, makeConfig, node } from '../../config/vite-common';

/** @type {string} */
const PACKAGE_ROOT = __dirname;

/**
 * @type {import('vite').UserConfig}
 * @see https://vitejs.dev/config/
 */
const config = makeConfig({
  root: PACKAGE_ROOT,
  build: {
    target: [
      chrome,
      node,
    ],
    lib: {
      entry: 'src/index.ts',
      formats: [
        'cjs',
        'es',
      ],
    },
    rollupOptions: {
      external: [
        'mobx',
        'mobx-state-tree',
        'zod',
        ...builtinModules,
      ],
    },
    emptyOutDir: false, // Do not remove .d.ts files.
  },
});

export default config;