-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
vite.config.ts
49 lines (47 loc) · 1.1 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
// 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",
"**/testing-app/**",
],
tsconfig: resolve(__dirname, `tsconfig.json`),
tsconfigOverride: {
compilerOptions: {
sourceMap: false,
declaration: true,
declarationMap: true,
},
},
}),
enforce: "pre",
},
],
build: {
lib: {
entry: resolve(__dirname, "src/index.ts"),
name: "Remix hook form",
fileName: "index",
},
rollupOptions: {
external: ["react", "react-dom", "react-hook-form", "@remix-run/react"],
output: {
globals: {
react: "React",
"@remix-run/react": "@remix-run/react",
"react-hook-form": "react-hook-form",
},
},
},
},
});