-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvite.lib.config.ts
More file actions
46 lines (44 loc) · 1.13 KB
/
vite.lib.config.ts
File metadata and controls
46 lines (44 loc) · 1.13 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
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
import { defineConfig } from 'vite'
import dts from 'vite-plugin-dts'
import eslint from 'vite-plugin-eslint'
import pkg from './package.json'
export default defineConfig({
plugins: [
vue(),
dts({
include: ['lib'],
entryRoot: 'lib',
rollupTypes: false,
tsconfigPath: resolve(__dirname, 'tsconfig.lib.json')
}),
eslint()
],
build: {
lib: {
formats: ['es', 'cjs'],
entry: {
index: resolve(__dirname, 'lib/index.ts'),
'localization/index': resolve(__dirname, 'lib/localization/index.ts'),
'rules/index': resolve(__dirname, 'lib/rules/index.ts'),
'utils/index': resolve(__dirname, 'lib/utils/index.ts')
}
},
emptyOutDir: true,
rollupOptions: {
external: [...Object.keys(pkg.dependencies)],
output: {
globals: {
...(() => {
const obj: Record<string, string> = {}
Object.keys(pkg.dependencies).forEach((key) => {
obj[key] = key
})
return obj
})()
}
}
}
}
})