-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
38 lines (36 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" />
import react from '@vitejs/plugin-react';
import path from 'path';
import { defineConfig } from 'vite';
import eslintPlugin from 'vite-plugin-eslint2';
// https://vite.dev/config/
export default defineConfig({
plugins: [
react(),
eslintPlugin({
cache: false, // Disable caching to ensure the latest linting results
include: ['src/**/*.ts', 'src/**/*.tsx'], // Specify the files to lint
exclude: ['node_modules', 'dist'], // Exclude unnecessary directories
}),
],
base: '/wazoo/',
resolve: {
alias: {
'@assets': path.resolve(__dirname, 'src/assets'),
'@components': path.resolve(__dirname, 'src/components'),
'@context': path.resolve(__dirname, 'src/context'),
'@hooks': path.resolve(__dirname, 'src/hooks'),
'@src': path.resolve(__dirname, 'src'),
'@test': path.resolve(__dirname, 'src/test'),
},
},
test: {
root: __dirname,
include: ['src/**/*.test.tsx', 'src/**/*.test.ts'],
globals: true,
environment: 'jsdom',
setupFiles: './src/test/vitest-setup.tsx',
name: 'Wazoo',
workspace: './vitest.workspace.ts',
},
});