-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrollup.config.js
73 lines (64 loc) · 1.7 KB
/
rollup.config.js
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
import esbuild from 'rollup-plugin-esbuild'
import dts from 'rollup-plugin-dts'
import resolve from '@rollup/plugin-node-resolve'
import commonjs from '@rollup/plugin-commonjs'
import ts from 'rollup-plugin-typescript2'
import json from '@rollup/plugin-json'
import alias from '@rollup/plugin-alias'
import path from 'path'
import { fileURLToPath } from 'url'
const __filename = fileURLToPath(import.meta.url)
const __dirnamenew = path.dirname(__filename)
const projectRoot = path.resolve(__dirnamenew)
const override = { compilerOptions: { module: 'ESNext' } }
const entries = [
'src/index.ts',
]
const plugins = [
alias({
entries: [
{ find: /^node:(.+)$/, replacement: '$1' },
// {find: "@src", replacement: path.resolve(projectRoot, 'src')}
],
}),
resolve({
preferBuiltins: true,
}),
// 根据tsconfig.json的情况进行打包
ts({ tsconfig: './tsconfig.json', tsconfigOverride: override }),
// 将json文件转化为ES6-module
json(),
// 将commonjs的格式转化为es6的格式
commonjs(),
esbuild({
target: 'node14',
}),
]
export default [
...entries.map(input => ({
input,
output: [
{
file: input.replace('src/', 'dist/').replace('.ts', '.mjs'),
format: 'esm',
},
{
file: input.replace('src/', 'dist/').replace('.ts', '.cjs'),
format: 'cjs',
},
],
external: [],
plugins,
})),
...entries.map(input => ({
input,
output: {
file: input.replace('src/', '').replace('.ts', '.d.ts'),
format: 'esm',
},
external: [],
plugins: [
dts({ respectExternal: true }),
],
})),
]