-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.config.mjs
More file actions
62 lines (58 loc) · 1.29 KB
/
vite.config.mjs
File metadata and controls
62 lines (58 loc) · 1.29 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
import { readFileSync } from "fs";
import { resolve } from "path";
import { defineConfig } from "vite";
import dts from "vite-plugin-dts";
import react from "@vitejs/plugin-react";
const pkg = JSON.parse(readFileSync("./package.json", "utf-8"));
export default defineConfig({
plugins: [
react(),
dts({
insertTypesEntry: true,
tsconfigPath: "./tsconfig.json",
entryRoot: "src",
outDir: "dist",
compilerOptions: {
paths: {
"@/*": ["./src/*"],
},
},
}),
],
resolve: {
alias: {
"@": resolve(process.cwd(), "./src"),
},
},
build: {
sourcemap: false,
emptyOutDir: false,
lib: {
formats: ["es"],
entry: {
index: "src/index.ts",
acl: "src/acl.ts",
},
},
minify: false,
outDir: "dist",
rollupOptions: {
external: [
// Externalize all dependencies and peerDependencies
...Object.keys(pkg.dependencies || {}),
...Object.keys(pkg.peerDependencies || {}),
/^react($|\/)/,
/^react-dom($|\/)/,
/^@[\w-]+\//,
],
output: {
preserveModules: true,
preserveModulesRoot: "src",
globals: {
react: "React",
"react-dom": "ReactDOM",
},
},
},
},
});