File size: 827 Bytes
bdc1ac8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
41
import { defineConfig } from "vite";

export default defineConfig({
  build: {
    target: "node18",
    lib: {
      entry: {
        index: "src/index.ts",
        calibrate: "src/calibrate.ts",
        teleoperate: "src/teleoperate.ts",
        find_port: "src/find_port.ts",
        release_motors: "src/release_motors.ts",
      },
      formats: ["es"],
    },
    rollupOptions: {
      external: [
        // Node.js built-ins
        "fs",
        "path",
        "os",
        "readline",
        "util",
        "events",
        "stream",
        "fs/promises",
        // External dependencies
        "serialport",
      ],
    },
    minify: false,
    sourcemap: true,
  },
  test: {
    globals: true,
    environment: "node",
    include: ["src/**/*.test.ts"],
    exclude: ["dist", "node_modules"],
  },
});