-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.js
41 lines (40 loc) · 919 Bytes
/
vite.config.js
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";
import path from "path";
import dts from "vite-plugin-dts";
export default defineConfig(({ command, mode }) => {
if (mode === "test") {
return {};
}
if (command === "serve") {
return {
root: path.resolve(__dirname, "examples"),
server: {
port: 8008,
open: "/",
},
optimizeDeps: {
exclude: ["@mapbox"],
},
};
} else {
return {
build: {
lib: {
entry: path.resolve(__dirname, "src/index.ts"),
name: "DuckPlot",
formats: ["cjs", "es"],
fileName: (format) => `index.${format}`,
},
minify: false,
emptyOutDir: true,
},
plugins: [
dts({
outputDir: "dist",
rollupTypes: true,
insertTypesEntry: true, // Add this to create an entry point for types
}),
],
};
}
});