Spaces:
Running
Running
File size: 614 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 |
import { defineConfig } from "vite";
export default defineConfig({
build: {
target: "node18",
lib: {
entry: {
cli: "src/cli.ts",
index: "src/index.ts",
},
formats: ["es"],
},
rollupOptions: {
external: [
// Node.js built-ins
"fs",
"fs/promises",
"path",
"os",
"readline",
"util",
"events",
"stream",
// External dependencies
"@lerobot/node",
"chalk",
"commander",
"serialport",
],
},
minify: false,
sourcemap: true,
},
});
|