-
Notifications
You must be signed in to change notification settings - Fork 20
/
vite.config.ts
41 lines (38 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
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('StoryblokJS')} 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: path.resolve(__dirname, 'src', 'index.ts'),
name: 'storyblok',
fileName: (format) => {
const name = 'storyblok-js';
return format === 'es' ? `${name}.mjs` : `${name}.js`;
},
},
},
test: {
globals: true,
include: ['./src/**/*.test.ts'],
exclude: ['./cypress'],
coverage: {
include: ['src'],
reporter: ['text', 'json', 'html'],
reportsDirectory: './tests/unit/coverage',
},
},
});