-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathvite.config.ts
52 lines (51 loc) · 1.27 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
46
47
48
49
50
51
52
/// <reference types="vitest/config" />
import { defineConfig } from 'vite'
import { resolve } from 'path'
import react from '@vitejs/plugin-react-swc'
import tsConfigPaths from 'vite-tsconfig-paths'
import dts from 'vite-plugin-dts'
import libCss from 'vite-plugin-libcss'
export default defineConfig({
plugins: [
react(),
dts({
root: '.',
include: ['src/types/**/*.d.ts', '**/*.{test,spec,e2e}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
outDir: 'dist',
copyDtsFiles: true,
}),
tsConfigPaths(),
libCss(),
],
test: {
globals: true,
environment: 'jsdom',
silent: true,
setupFiles: ['./src/setupTest.ts'],
include: ['src/**/*.spec.{ts,tsx}'],
coverage: {
provider: 'v8',
reporter: ['text', 'html', 'lcov'],
},
},
build: {
lib: {
entry: resolve('src', 'components/index.ts'),
name: 'ContributionCalendar',
formats: ['es', 'umd'],
fileName: 'index',
},
rollupOptions: {
external: ['react', 'react-dom', 'react/jsx-runtime'],
output: {
globals: {
react: 'React',
'react-dom': 'ReactDOM',
'react/jsx-runtime': 'jsxRuntime',
},
assetFileNames: 'styles/[name].[ext]',
},
},
emptyOutDir: true,
},
})