upda/server/web/vite.config.ts
Varakh 51eaa38a8f
All checks were successful
/ build (push) Successful in 5m28s
feat(deps): move to pnpm and update dependencies
Reviewed-on: #51
Co-authored-by: Varakh <varakh@varakh.de>
Co-committed-by: Varakh <varakh@varakh.de>
2024-12-10 20:01:37 +00:00

38 lines
852 B
TypeScript

/// <reference types="vitest" />
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import eslint from 'vite-plugin-eslint2';
import stylelint from 'vite-plugin-stylelint';
import svgrPlugin from 'vite-plugin-svgr';
import viteTsconfigPaths from 'vite-tsconfig-paths';
const stylelintOptions = {
dev: true
};
const eslintOptions = {
dev: true
};
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react(), viteTsconfigPaths(), svgrPlugin(), stylelint(stylelintOptions), eslint(eslintOptions)],
server: {
open: false,
host: '127.0.0.1',
port: 3001
},
build: {
outDir: 'build'
},
// @ts-ignore
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/setupTests.ts',
coverage: {
reporter: ['text', 'html'],
exclude: ['node_modules/', 'src/setupTests.ts']
}
}
});