-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
69 lines (64 loc) · 1.71 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
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import banner from 'vite-plugin-banner'
import dts from 'vite-plugin-dts'
import { resolve } from 'pathe'
import analyze from 'rollup-plugin-analyzer'
import { lightGreen, yellow, gray, bold } from 'kolorist'
import { templateCompilerOptions } from '@tresjs/core'
import pkg from './package.json'
console.log(`${lightGreen('▲')} ${gray('■')} ${yellow('⚔')} ${bold('FPS-Controls')} v${pkg.version}`)
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
dedupe: ['@tresjs/core'],
},
plugins: [
vue({
isProduction: false,
...templateCompilerOptions,
}),
dts({
insertTypesEntry: true,
}),
banner({
content: `/**\n * name: ${pkg.name}\n * version: v${pkg.version
}\n * (c) ${new Date().getFullYear()}\n * description: ${pkg.description}\n * author: ${pkg.author}\n */`,
}),
],
build: {
lib: {
entry: resolve(__dirname, 'src/index.ts'),
name: 'tresfpscontrols',
fileName: 'tresfpscontrols',
},
copyPublicDir: false,
watch: {
include: [resolve(__dirname, 'src')],
},
rollupOptions: {
plugins: [
analyze(),
/* visualizer({
gzipSize: true,
brotliSize: true,
open: true,
}), */
],
external: ['three', 'vue', '@tresjs/core'],
output: {
exports: 'named',
// Provide global variables to use in the UMD build
// for externalized deps
globals: {
'@tresjs/core': 'TresjsCore',
three: 'Three',
vue: 'Vue',
},
},
},
},
optimizeDeps: {
exclude: ['three', 'vue', '@tresjs/core'],
},
})