-
-
Notifications
You must be signed in to change notification settings - Fork 333
/
build.config.ts
55 lines (52 loc) · 1.18 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
import { defineBuildConfig } from 'unbuild'
export default defineBuildConfig({
clean: true,
entries: [
{
input: './src/index',
name: 'index',
},
{
input: './src/server/index',
name: 'server/index',
},
],
declaration: true,
externals: [
'firebase',
'firebase/app',
'firebase/app-check',
'firebase/auth',
'firebase/firestore',
'firebase/database',
'firebase/storage',
'@firebase/app-types',
'@firebase/database-types',
'@firebase/firestore-types',
'firebase-admin',
'firebase-admin/app',
'firebase-admin/app-check',
'firebase-admin/auth',
'firebase-functions',
'firebase-functions/params',
'consola',
],
rollup: {
emitCJS: true,
},
// hooks: {
// 'rollup:options': (ctx, options) => {
// if (!Array.isArray(options.output)) {
// options.output = options.output ? [options.output] : []
// }
// options.output.push({
// dir: ctx.options.outDir,
// format: 'cjs',
// entryFileNames: '[name].cjs',
// exports: 'auto',
// externalLiveBindings: false,
// freeze: false,
// })
// },
// },
})