-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
38 lines (37 loc) · 1.14 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
/// <reference types="vitest" />
/// <reference types="vite/client" />
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import { fileURLToPath, URL } from "url";
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
alias: {
"@pages": fileURLToPath(new URL("./src/pages", import.meta.url)),
"@hooks": fileURLToPath(new URL("./src/hooks", import.meta.url)),
"@components": fileURLToPath(
new URL("./src/components", import.meta.url)
),
"@domain": fileURLToPath(new URL("./src/domain", import.meta.url)),
"@utils": fileURLToPath(new URL("./src/utils", import.meta.url)),
"@services": fileURLToPath(new URL("./src/services", import.meta.url)),
"@test": fileURLToPath(new URL("./src/test", import.meta.url)),
},
},
plugins: [react()],
test: {
globals: true,
environment: "jsdom",
setupFiles: "./src/test/setupTests.ts",
clearMocks: true,
coverage: {
src: ["src"],
exclude: ["*.d.ts", "src/domain", "src/test"],
all: true,
lines: 70,
statements: 70,
branches: 70,
functions: 70,
},
},
});