-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.config.ts
65 lines (64 loc) · 1.17 KB
/
build.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
import { defineBuildConfig } from 'unbuild'
export default defineBuildConfig([
{
entries: ['src/index'],
rollup: {
inlineDependencies: true,
output: {
format: 'es',
entryFileNames: '[name].js',
},
resolve: {
exportConditions: ['node'],
},
esbuild: {
minify: true,
},
},
declaration: true,
failOnWarn: false,
externals: [
'fsevents',
'node:url',
'node:buffer',
'node:path',
'node:child_process',
'node:process',
'node:path',
'node:os',
'clipboardy',
'consola',
'vite',
],
},
{
entries: ['src/index'],
rollup: {
inlineDependencies: true,
output: {
format: 'cjs',
entryFileNames: '[name].cjs',
},
resolve: {
exportConditions: ['node'],
},
esbuild: {
minify: true,
},
},
declaration: true,
externals: [
'fsevents',
'node:url',
'node:buffer',
'node:path',
'node:child_process',
'node:process',
'node:path',
'node:os',
'clipboardy',
'consola',
'vite',
],
},
])