-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
29 lines (28 loc) · 919 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
/* eslint-disable @typescript-eslint/triple-slash-reference */
/* eslint-disable import/no-extraneous-dependencies */
/// <reference types="vitest" />
/// <reference types="vite" />
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
import tsconfigPaths from 'vite-tsconfig-paths';
import path from 'path';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), tsconfigPaths()],
base: './',
resolve: {
alias: {
api: path.resolve(__dirname, './src/api'),
assets: path.resolve(__dirname, './src/assets'),
components: path.resolve(__dirname, './src/components'),
queries: path.resolve(__dirname, './src/queries'),
pages: path.resolve(__dirname, './src/pages'),
mocks: path.resolve(__dirname, './src/mocks'),
},
},
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/setupTest.ts',
},
});