-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
47 lines (46 loc) · 1009 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
40
41
42
43
44
45
46
47
// 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",
"**/testing-env/**",
],
tsconfig: resolve(__dirname, `tsconfig.json`),
tsconfigOverride: {
compilerOptions: {
sourceMap: false,
declaration: true,
declarationMap: true,
},
},
}),
enforce: "pre",
},
],
build: {
lib: {
entry: resolve(__dirname, "src/index.ts"),
name: "React input mask",
fileName: "index",
},
rollupOptions: {
external: ["react", "react-dom"],
output: {
globals: {
react: "React",
},
},
},
},
});