generated from unplugin/unplugin-starter
-
-
Notifications
You must be signed in to change notification settings - Fork 20
/
build.config.ts
62 lines (60 loc) · 1.05 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
import { defineBuildConfig } from 'unbuild'
export default defineBuildConfig({
entries: [
{
input: 'src/index.ts',
name: 'index',
},
{
input: 'src/plugin.ts',
name: 'plugin',
},
{
input: 'src/transforms.ts',
name: 'transforms',
},
{
input: 'src/runtime.ts',
name: 'runtime',
},
{
input: 'src/utils.ts',
name: 'utils',
},
{
input: 'src/unplugin.ts',
name: 'unplugin',
},
],
clean: true,
declaration: true,
rollup: {
emitCJS: true,
},
externals: [
'@pinceau/theme',
'@pinceau/outputs',
'@pinceau/outputs/vue-plugin',
'@pinceau/core',
'@pinceau/style',
'@pinceau/core/utils',
'@pinceau/style/utils',
'@pinceau/runtime',
'@pinceau/stringify',
'@pinceau/core/runtime',
'sfc-composer/vue',
'vue/compiler-sfc',
'magic-string',
'sfc-composer',
'vite',
'vue',
'unplugin',
'ast-types',
'ohash',
'scule',
'@vue',
'@volar',
'$pinceau',
'pathe',
],
})