-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathvite.config.ts
83 lines (76 loc) · 1.85 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
73
74
75
76
77
78
79
80
81
82
83
/// <reference types="vitest" />
import { BuildOptions, defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path, { resolve } from "path";
import dts from "vite-plugin-dts";
const buildType = process.argv[4];
const isBundledBuild = buildType === "bundled";
const externalLibraries = [
"dayjs",
"react",
"react-dom",
"**/*.stories.ts",
"**/*.stories.tsx",
"**/*.test.ts",
"**/*.test.tsx",
"react/jsx-runtime",
];
if (!isBundledBuild) {
externalLibraries.push("styled-components");
}
const buildOptions: BuildOptions = {
emptyOutDir: false,
minify: false,
lib: {
entry: resolve(__dirname, "src/index.ts"),
name: "click-ui",
formats: ["es", "umd"],
fileName: format =>
isBundledBuild ? `click-ui.bundled.${format}.js` : `click-ui.${format}.js`,
},
rollupOptions: {
// Add _all_ external dependencies here
external: externalLibraries,
output: {
globals: {
dayjs: "dayjs",
react: "React",
"styled-components": "styled",
"react-dom": "ReactDOM",
},
},
},
};
// https://vitejs.dev/config/
export default defineConfig({
plugins: [
react({
babel: {
plugins: [["babel-plugin-styled-components", { displayName: false }]],
env: {
development: {
plugins: [["babel-plugin-styled-components", { displayName: true }]],
},
},
},
}),
dts({
include: ["src/"],
exclude: ["**/*.stories.ts", "**/*.stories.tsx", "**/*.test.ts", "**/*.test.tsx"],
}),
],
resolve: {
alias: {
"@": path.resolve(__dirname, "./src"),
},
},
build: buildOptions,
test: {
environment: "jsdom",
include: ["**/*.test.{ts,tsx}"],
globals: true,
watch: false,
exclude: ["node_modules"],
setupFiles: ["@testing-library/jest-dom", "./setupTests.ts"],
},
});