-
Notifications
You must be signed in to change notification settings - Fork 23
/
vite.config.ts
45 lines (41 loc) · 1.06 KB
/
vite.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
import vue from '@vitejs/plugin-vue';
import { defineConfig } from 'vitest/config';
import path from 'node:path';
import { lightGreen } from 'kolorist';
import banner from 'vite-plugin-banner';
import dts from 'vite-plugin-dts';
import pkg from './package.json';
// eslint-disable-next-line no-console
console.log(`${lightGreen('Storyblok Vue')} v${pkg.version}`);
export default defineConfig({
plugins: [
dts({
insertTypesEntry: true,
}),
vue(),
banner({
content: `/**\n * name: ${pkg.name}\n * (c) ${new Date().getFullYear()}\n * description: ${pkg.description}\n * author: ${pkg.author}\n */`,
}),
],
build: {
lib: {
entry: path.resolve(__dirname, 'src', 'index.ts'),
name: 'storyblokVue',
fileName: (format) => {
const name = 'storyblok-vue';
return format === 'es' ? `${name}.mjs` : `${name}.js`;
},
},
rollupOptions: {
output: {
globals: {
vue: 'Vue',
},
},
external: ['vue'],
},
},
optimizeDeps: {
exclude: ['vue'],
},
});