forked from forge42dev/react-router-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
54 lines (53 loc) · 1.36 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
// vite.config.js
import { resolve } from "path";
import { defineConfig } from "vite";
import ts2 from "rollup-plugin-typescript2";
export default defineConfig({
plugins: [
{
...ts2({
check: true,
include: [
"**/client/RemixDevTools.tsx",
"**/client/EmbeddedDevTools.tsx",
"**/src/index.ts",
"**/hooks/useRemixForgeSocket.ts",
"**/tabs/index.tsx",
"**/init/project.tsx",
],
tsconfig: resolve(__dirname, `tsconfig.json`),
tsconfigOverride: {
compilerOptions: {
sourceMap: false,
declaration: true,
declarationMap: true,
},
},
}),
enforce: "pre",
},
],
publicDir: resolve(__dirname, "public"),
build: {
assetsDir: "public",
lib: {
entry: resolve(__dirname, "src/index.ts"),
name: "Remix Dev Tools",
fileName: (format) => `index.${format === "es" ? "mjs" : "umd.cjs"}`,
},
emptyOutDir: false,
copyPublicDir: true,
rollupOptions: {
external: ["react", "react-dom", "@remix-run/react"],
output: {
exports: "named",
globals: {
react: "React",
["react-dom"]: "ReactDOM",
["@remix-run/react"]: "@remix-run/react",
},
assetFileNames: "stylesheet[extname]",
},
},
},
});