-
Notifications
You must be signed in to change notification settings - Fork 1
/
vite.config.ts
52 lines (48 loc) · 1.18 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
import path from 'path'
import react from '@vitejs/plugin-react'
import type { AliasOptions } from 'vite'
import { defineConfig } from 'vite'
import dts from 'vite-plugin-dts'
import svgr from 'vite-plugin-svgr'
import packageJson from './package.json'
import tsconfigJson from './tsconfig.json'
const getTsAlias = (): AliasOptions => {
const paths = tsconfigJson.compilerOptions.paths
return Object.keys(paths).reduce((acc, cur) => {
const pathName = cur as keyof typeof paths
return {
...acc,
[cur]: path.resolve(__dirname, `src/${paths[pathName][0]}`)
}
}, {})
}
// https://vitejs.dev/config/
export default defineConfig({
build: {
lib: {
entry: path.resolve(__dirname, 'src/index.ts'),
fileName: 'index',
formats: ['es', 'cjs']
},
rollupOptions: {
external: [...Object.keys(packageJson.peerDependencies)]
},
sourcemap: 'inline'
},
plugins: [
dts({ insertTypesEntry: true }),
react({
babel: {
plugins: ['@emotion/babel-plugin']
}
}),
svgr()
],
publicDir: 'public',
resolve: {
alias: {
...getTsAlias()
},
extensions: ['.js', '.ts', '.jsx', '.tsx', '.d.ts']
}
})