-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvite.config.ts
37 lines (33 loc) · 927 Bytes
/
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
/// <reference types="vitest" />
import { defineConfig } from 'vite';
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 Richtext')} v${pkg.version}`);
export default defineConfig({
plugins: [
dts({
insertTypesEntry: true,
}),
banner({
content: `/**\n * name: ${pkg.name}\n * (c) ${new Date().getFullYear()}\n * description: ${pkg.description}\n * author: ${pkg.author}\n */`,
}),
],
build: {
lib: {
entry: 'src/index.ts',
name: 'StoryblokRichText',
fileName: format => `storyblok-richtext.${format}.js`,
},
/* minify: false, */
},
test: {
coverage: {
include: ['src/**'],
exclude: ['src/index.ts'],
reportsDirectory: './tests/unit/coverage',
},
},
});