-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
37 lines (35 loc) · 963 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
import { defineConfig } from 'vite'
import path from 'path';
import reactRefresh from '@vitejs/plugin-react-refresh'
import svgr from 'vite-plugin-svgr';
import typescript from '@rollup/plugin-typescript'
const resolvePath = (str: string) => path.resolve(__dirname, str);
// https://vitejs.dev/config/
export default defineConfig({
publicDir: 'static',
define: {
'__LIB_VERSION__': JSON.stringify(process.env.npm_package_version),
},
build: {
outDir: 'lib',
assetsInlineLimit: 32768,
lib: {
entry: resolvePath('index.ts'),
name: 'debot-web-embedding',
fileName: (format) => `debot-web-embedding.${format}.js`
},
rollupOptions: {
plugins: [
typescript({
target: 'ESNext',
rootDir: resolvePath('./src'),
declaration: true,
declarationDir: resolvePath('./lib'),
exclude: resolvePath('./node_modules/**'),
allowSyntheticDefaultImports: true,
})
],
},
},
plugins: [reactRefresh(), svgr()],
})