-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathvite.config.ts
78 lines (73 loc) · 2.03 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
71
72
73
74
75
76
77
78
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import dts from 'vite-plugin-dts'
import { viteStaticCopy } from 'vite-plugin-static-copy'
// https://vite.dev/config/
const a = defineConfig(({ mode }) => {
const devPublicPath = fileURLToPath(new URL('./public', import.meta.url))
return {
publicDir: mode === 'development' ? devPublicPath : false,
plugins: [
vue(),
dts({
tsconfigPath: fileURLToPath(new URL('./tsconfig.app.json', import.meta.url)),
entryRoot: fileURLToPath(new URL('./src/package', import.meta.url)),
insertTypesEntry: true
}),
viteStaticCopy({
targets: [
{ src: 'src/package/client.d.ts', dest: '.' },
{ src: 'src/package/styles/light.scss', dest: 'styles' },
{ src: 'src/package/styles/dark.scss', dest: 'styles' },
{ src: 'LICENSE', dest: '.' },
{ src: 'README.md', dest: '.' },
{ src: 'api.md', dest: '.' }
]
})
],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url)),
'@pkg': fileURLToPath(new URL('./src/package', import.meta.url))
}
},
css: {
preprocessorOptions: {
scss: {
api: 'modern-compiler'
}
},
devSourcemap: true
},
build: {
sourcemap: true,
lib: {
entry: fileURLToPath(new URL('./src/package', import.meta.url)),
name: 'FakeQQUI',
formats: ['es', 'umd', 'cjs']
},
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true
}
},
rollupOptions: {
external: ['vue'],
output: {
assetFileNames: chunkInfo => {
if (chunkInfo.name!.endsWith('css')) {
return 'styles/[name][extname]'
}
return 'assets/[name].[ext]'
},
globals: {
vue: 'Vue'
}
}
}
}
}
})
export default a