-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvite.config.ts
More file actions
114 lines (111 loc) · 2.84 KB
/
Copy pathvite.config.ts
File metadata and controls
114 lines (111 loc) · 2.84 KB
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
/// <reference types="vitest" />
/// <reference types="vite-plugin-svgr/client" />
import { defineConfig } from 'vite'
import path from 'path'
import react from '@vitejs/plugin-react'
import dts from 'vite-plugin-dts'
import svgr from 'vite-plugin-svgr'
// https://vitejs.dev/config/
export default defineConfig({
build: {
target: 'esnext',
minify: false,
cssMinify: false,
//Specifies that the output of the build will be a library.
lib: {
//Defines the entry point for the library build. It resolves
//to src/index.ts,indicating that the library starts from this file.
entry: path.resolve(__dirname, 'src/index.ts'),
name: 'connect-widget',
formats: ['es'],
//A function that generates the output file
//name for different formats during the build
fileName: (format) => `index.${format}.js`,
},
rollupOptions: {
// Specifies external dependencies that should not be bundled into the library.
external: [
'react',
'react-dom',
'react/jsx-runtime',
'react/jsx-dev-runtime',
'react-dom/client',
],
output: {
globals: {
react: 'React',
'react-dom': 'ReactDOM',
},
assetFileNames: (assetInfo) => {
if (assetInfo.name && assetInfo.name.endsWith('.css')) {
return 'style.css'
}
return assetInfo.name || 'assets/[name][extname]'
},
},
onwarn(warning, defaultHandler) {
if (warning.code === 'SOURCEMAP_ERROR') {
return
}
defaultHandler(warning)
},
},
//Generates sourcemaps for the built files,
//aiding in debugging.
sourcemap: true,
//Clears the output directory before building.
emptyOutDir: true,
},
esbuild: {
include: /\.[jt]sx?$/,
exclude: [],
loader: 'tsx',
},
optimizeDeps: {
esbuildOptions: {
loader: {
'.js': 'jsx',
},
},
},
resolve: {
alias: {
src: path.resolve(__dirname, './src'),
utils: path.join(__dirname, 'src/utils'),
},
},
plugins: [
react(),
dts(),
svgr({ include: '**/*.svg', svgrOptions: { svgProps: { role: 'image' } } }),
],
test: {
globals: true,
environment: 'jsdom',
setupFiles: './src/testSetup.ts',
include: ['**/*-{test,spec}.?(c|m)[jt]s?(x)'],
server: {
deps: {
inline: ['@mxenabled/mx-icons'],
},
},
coverage: {
provider: 'v8',
reporter: ['text', 'json', 'html'],
exclude: [
'node_modules/',
'src/testSetup.ts',
'src/index.ts',
'src/main.tsx',
'**/*.d.ts',
'**/*-{test,spec}.{js,ts,jsx,tsx}',
'**/__tests__/**',
'**/dist/**',
'.eslintrc.cjs',
'vite.config.ts',
'scripts/**',
'**/__mocks__/**',
],
},
},
})