-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvite.config.ts
67 lines (61 loc) · 1.73 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
import { resolve } from 'path';
import { defineConfig, loadEnv } from 'vite';
import { configDefaults } from 'vitest/config';
import react from '@vitejs/plugin-react';
import copy from 'rollup-plugin-copy';
/** @type {import('vite').UserConfig} */
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, process.cwd(), '');
const isProduction = env.NODE_ENV === 'production';
return {
define: {
'import.meta.vitest': false
},
build: {
sourcemap: !isProduction,
chunkSizeWarningLimit: 1000,
rollupOptions: {
input: {
popup: resolve(__dirname, 'popup.html'),
options: resolve(__dirname, 'options.html')
},
plugins: [
copy({
hook: 'writeBundle',
targets: [
{
src: 'manifest.json',
dest: 'dist',
transform: (contents) =>
contents
.toString()
.replace('$version', env.VITE_APP_VERSION)
.replace(/\$name/g, env.npm_package_description)
}
]
})
]
},
assetsDir: '',
define: {
APP_VERSION: JSON.stringify(env.VITE_APP_VERSION)
}
},
plugins: [react()],
test: {
globals: true,
includeSource: ['src/**/*.ts', 'src/**/*.tsx'],
// Environment: 'jsdom',
environment: 'happy-dom',
setupFiles: 'src/setupTests.ts',
mockReset: true,
restoreMocks: true,
coverage: {
src: './src',
all: true,
reporter: ['lcov', 'json', 'json-summary', 'html'],
exclude: [...configDefaults.coverage.exclude, 'setupTests.ts', '**/*.d.ts']
}
}
};
});