-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrslib.config.ts
58 lines (56 loc) · 900 Bytes
/
rslib.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, type LibConfig } from '@rslib/core';
const prod = process.env.NODE_ENV === 'production';
const bundle = true;
const basePath = './dist';
const sharedLib: LibConfig = {
syntax: 'es2024',
bundle,
dts: {
bundle,
autoExtension: true,
},
output: {
minify: {
js: prod,
jsOptions: {
minimizerOptions: {
compress: prod,
mangle: prod,
minify: prod,
format: {
comments: prod ? false : 'all'
}
}
}
},
},
};
export default defineConfig({
source: {
entry: {
index: './src/index.ts',
},
transformImport: [
{
libraryName: 'lodash',
customName: 'lodash/{{ member }}',
},
],
},
lib: [
{
...sharedLib,
format: 'esm',
output: {
distPath: { root: `${basePath}/esm` },
}
},
{
...sharedLib,
format: 'cjs',
output: {
distPath: { root: `${basePath}/cjs` },
}
},
]
});