aboutsummaryrefslogtreecommitdiffstats
path: root/packages/service-shared/vite.config.js
blob: 6f4959fd1b693605e0cba6d4eb336adeb78b5346 (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
// @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'],
    },
    rollupOptions: {
      external: [
        'zod',
        ...builtinModules,
      ],
    },
  },
});

export default config;