-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
70 lines (69 loc) · 1.61 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { defineConfig } from 'vite'
import { resolve } from 'path'
import react from '@vitejs/plugin-react-swc'
import dts from 'vite-plugin-dts'
import svgr from "vite-plugin-svgr";
export default defineConfig({
plugins: [
react(),
dts({ include: ['src'], insertTypesEntry: true }),
svgr({ include: '**/*.svg' })
],
resolve: {
alias: {
'src': '/src'
}
},
optimizeDeps: {
include: [
'react',
'react-dom',
'@mui/material',
'@emotion/react',
'@emotion/styled',
'@mui/icons-material',
'@mui/x-date-pickers',
'react/jsx-runtime',
'tss-react'
]
},
build: {
lib: {
name: '@kredimx/form-builder',
entry: resolve(__dirname, 'src/main.ts'),
formats: ['es'],
fileName: format => `index.${format}.js`
},
target: 'esnext',
minify: true,
copyPublicDir: false,
rollupOptions: {
external: [
'react',
'react-dom',
'react-is',
'@mui/material',
'@emotion/react',
'@emotion/styled',
'@mui/icons-material',
'@mui/x-date-pickers',
'react/jsx-runtime',
'tss-react'
],
output: {
globals: {
react: 'React',
'react-dom': 'ReactDOM',
'react-is': 'reactIs',
'@mui/material': 'mui',
'@emotion/react': 'emotionReact',
'@emotion/styled': 'emotionStyled',
'@mui/icons-material': 'muiIcons',
'@mui/x-date-pickers': 'xDatePickers',
'react/jsx-runtime': 'jsxRuntime',
'tss-react': 'tssReact'
}
}
}
},
})