-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
89 lines (79 loc) · 1.87 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
import path from 'path';
import react from '@vitejs/plugin-react-swc';
import browserslistToEsbuild from 'browserslist-to-esbuild';
import { visualizer } from 'rollup-plugin-visualizer';
import { defineConfig, type PluginOption } from 'vite';
import eslint from 'vite-plugin-eslint';
import svgr from 'vite-plugin-svgr';
const getSvgrPluginOptions = () => ({
svgrOptions: {
prettier: false,
svgo: false,
svgoConfig: {
plugins: [{ removeViewBox: false }]
},
titleProp: true,
ref: true
}
});
const getEslintPluginOptions = (isProductionBuild: boolean) => ({
failOnError: isProductionBuild,
failOnWarning: false
});
const getVisualizerPluginOptions = () => ({
title: 'Dependency Analysis',
filename: 'bundleAnalysisReport.html',
gzipSize: true
});
export default defineConfig(({ mode }) => {
const isProductionBuild = !['development', 'test'].includes(mode);
const serverConfig = {
port: 3000,
host: true,
strictPort: true
};
const plugins: PluginOption[] = [
svgr(getSvgrPluginOptions()),
react(),
eslint(getEslintPluginOptions(isProductionBuild)),
visualizer(getVisualizerPluginOptions())
];
const target = browserslistToEsbuild();
if (!target.length) {
throw new Error('Plz, verify browserslist config!');
}
return {
build: {
outDir: 'build',
emptyOutDir: true,
manifest: 'assets-manifest.json',
target
},
server: {
...serverConfig
},
preview: {
...serverConfig
},
plugins,
resolve: {
alias: {
'~': path.resolve(__dirname, 'src')
}
},
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/setupTests.ts',
css: true,
passWithNoTests: true,
deps: {
fallbackCJS: true
},
reporters: 'default',
coverage: {
src: ['src']
}
}
};
});