-
Notifications
You must be signed in to change notification settings - Fork 9
/
vite.config.ts
92 lines (76 loc) · 1.83 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
90
91
92
import react from '@vitejs/plugin-react';
import path from 'node:path';
import { defineConfig, loadEnv } from 'vite';
import istanbul from 'vite-plugin-istanbul';
import pkgJson from './package.json';
//
//
//
const cwd = process.cwd();
const root = path.join(cwd, 'playground');
const srcRoot = path.join(cwd, 'src');
//
//
//
export default defineConfig(({ mode }) => {
const env = loadEnv(mode, root, '');
const isTestEnv = env.CYPRESS_COVERAGE === 'true';
return {
root,
base: './',
build: {
outDir: path.join(cwd, 'build'),
emptyOutDir: true,
sourcemap: isTestEnv ? 'inline' : 'hidden',
},
define: {
global: {},
},
publicDir: path.join(root, 'public'),
resolve: {
alias: [
// allow to import src with package name
// e.g. 'import { magic } from '@my-org/awesome';
{
find: pkgJson.name,
replacement: `${srcRoot}/index.ts`,
},
// allow to import src with absolute path (to handle imports inside of src)
// e.g. 'import { magic } from 'src/awesome';
{
find: /^src(\/.*)?$/,
replacement: `${srcRoot}/$1`,
},
],
},
server: {
port: Number(env.PORT) || 8090,
},
plugins: [
react({
babel: {
plugins: [
[
'@emotion',
{
sourceMap: true,
autoLabel: 'always',
labelFormat: '[local]',
cssPropOptimization: true,
},
],
],
},
}),
istanbul({
cwd,
cypress: true,
forceBuildInstrument: isTestEnv,
extension: ['.ts', '.tsx'],
include: ['src/**/*'],
nycrcPath: path.join(cwd, '.nycrc.json'),
requireEnv: true,
}),
],
};
});