-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathrslib.config.ts
60 lines (59 loc) · 1.66 KB
/
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
59
60
import { defineConfig } from '@rslib/core';
export default defineConfig({
source: {
entry: {
index: './src/index.ts',
},
tsconfigPath: './tsconfig.json',
},
output: {
cleanDistPath: true,
target:'web',
distPath: {
root: 'lib'
},
minify: true,
sourceMap: false,
},
resolve: {
extensions: [
'.js',
'.ts',
'.tsx'
]
},
lib: [
// CommonJS 是一种在 JavaScript 中使用的模块系统,特别是在像 Node.js 这样的服务器端环境中。它的诞生是为了通过提供一种管理模块和依赖项的方法,允许 JavaScript 在浏览器之外使用
{
format: 'cjs',
autoExtension: false,
output: {
filename: {
js: '[name].cjs.js',
},
},
},
// ESM 是一种在 ES2015 中引入的现代模块系统,允许将 JavaScript 代码组织成可重用的、自包含的模块。ESM 现在是 浏览器 和 Node.js 环境的标准,取代了旧的模块系统,如 CommonJS (CJS) 和 AMD。
{
format: 'esm',
autoExtension: false,
dts: true,
output: {
filename: {
js: '[name].esm.js',
},
},
},
// UMD 代表 通用模块定义,这是一种编写 JavaScript 模块的模式,可以在不同的环境中通用,例如浏览器和 Node.js。其主要目标是确保与最流行的模块系统兼容,包括 AMD(异步模块定义)、CommonJS(CJS)和浏览器全局变量
{
format: 'umd',
umdName: 'CustomJson2excel',
autoExtension: false,
output: {
filename: {
js: '[name].umd.js',
},
},
},
],
});