-
Notifications
You must be signed in to change notification settings - Fork 3
/
vite.config.ts
58 lines (57 loc) · 1.42 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
import react from "@vitejs/plugin-react-swc";
import { defineConfig } from "vite";
import { VitePWA } from "vite-plugin-pwa";
import { sri } from "vite-plugin-sri3";
// biome-ignore lint/style/noDefaultExport: <explanation>
export default defineConfig((_) => {
return {
build: {
outDir: "build",
},
define: {
APP_VERSION: JSON.stringify(process.env.npm_package_version),
},
resolve: {
extensions: [".js", ".ts", ".tsx"],
},
plugins: [
react({ devTarget: "es2022" }),
VitePWA({
manifest: {
theme_color: "#343746",
background_color: "#343746",
display: "standalone",
scope: "/",
start_url: "/",
short_name: "guitos",
name: "guitos",
icons: [
{
src: "favicon.svg",
sizes: "any",
type: "image/svg+xml",
},
],
},
}),
sri(),
],
test: {
clearMocks: true,
coverage: {
provider: "v8",
include: ["src/**"],
exclude: ["**/*.mother.ts", "**/*.test.ts", "**/*.test.tsx"],
},
pool: "vmThreads",
globals: true,
mockClear: true,
environment: "jsdom",
setupFiles: ["./src/setupTests.ts", "console-fail-test/setup"],
include: [
"src/**/*.{test,spec}.?(c|m)[jt]s?(x)",
"src/*.{test,spec}.?(c|m)[jt]s?(x)",
],
},
};
});