-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvite.config.ts
58 lines (57 loc) · 1.26 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
import {defineConfig} from 'vite';
import dts from 'vite-plugin-dts';
import path from 'path';
export default defineConfig(({command, mode}) => {
if (mode === 'lib') {
return {
build: {
target: 'modules', // 目标环境
emptyOutDir: true,
lib: {
entry: path.resolve(__dirname, 'src/index.tsx'),
formats: ['es', 'cjs']
},
rollupOptions: {
external: ['react', 'react-dom'],
output: [
{
format: 'es',
entryFileNames: '[name].js',
dir: 'es',
preserveModules: true
},
{
format: 'cjs',
entryFileNames: '[name].js',
dir: 'lib',
preserveModules: true,
exports: 'named'
}
]
}
},
plugins: [
dts({
entryRoot: 'src',
outDir: 'es',
tsconfigPath: './tsconfig.json'
}),
dts({
entryRoot: 'src',
outDir: 'lib',
tsconfigPath: './tsconfig.json'
})
]
};
} else {
return {
base: '/qrcode-react/',
build: {
outDir: 'dist'
},
server: {
open: true
}
};
}
});