-
Notifications
You must be signed in to change notification settings - Fork 3
/
vite.config.ts
39 lines (37 loc) · 936 Bytes
/
vite.config.ts
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
import PluginReact from "@vitejs/plugin-react";
import { resolve } from "path";
import { defineConfig } from "vite";
import PluginDts from "vite-plugin-dts";
import preserveDirectives from "rollup-preserve-directives";
// https://vitejs.dev/config/
export default defineConfig({
build: {
lib: {
entry: resolve(__dirname, "src/index.tsx"),
name: "React Obfuscate Email",
fileName: "react-obfuscate-email",
},
rollupOptions: {
external: ["react", "react-dom"],
output: {
globals: {
react: "React",
"react-dom": "ReactDOM",
},
},
},
},
plugins: [
//
// https://github.com/vitejs/vite/tree/main/packages/plugin-react#readme
PluginReact({
jsxRuntime: "classic",
}),
//
// https://github.com/qmhc/vite-plugin-dts#vite-plugin-dts
PluginDts({
outDir: "dist/types",
}),
preserveDirectives(),
],
});