forked from forge-42/react-router-devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
72 lines (70 loc) · 1.89 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
// vite.config.js
import { resolve } from "path";
import { defineConfig } from "vite";
import ts2 from "rollup-plugin-typescript2";
export default defineConfig({
plugins: [
{
...ts2({
check: true,
exclude: [
"**/__tests__/**",
"**/__mocks__/**",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.config.ts",
"**/env.ts",
"**/components/**",
"**/context/**",
"**/hooks/detached/**",
"**/hooks/useOutletAugment.tsx",
"**/hooks/useHorizontalScroll.ts",
"**/hooks/useAttachListener.ts",
"**/hooks/useDebounce.ts",
"**/hooks/useSetRouteBoundaries.ts",
"**/hooks/useResize.ts",
"**/hooks/useTabs.ts",
"**/hooks/useTerminalShortcuts.ts",
"**/hooks/useTimelineHandler.ts",
"**/tabs/**",
"**/utils/**",
"**/remix-app-for-testing/**",
"**/monitor/**",
"**/layout/**",
],
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]",
},
},
},
});