forked from Tresjs/cientos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vite.config.ts
77 lines (72 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
import vue from '@vitejs/plugin-vue'
import { defineConfig } from 'vite'
import banner from 'vite-plugin-banner'
import dts from 'vite-plugin-dts'
import analyze from 'rollup-plugin-analyzer'
import { visualizer } from 'rollup-plugin-visualizer'
import { resolve } from 'pathe'
import { lightGreen, yellow, gray, bold } from 'kolorist'
import pkg from './package.json'
// eslint-disable-next-line no-console
console.log(`${lightGreen('▲')} ${gray('■')} ${yellow('♥')} ${bold('Tres/cientos')} v${pkg.version}`)
// https://vitejs.dev/config/
export default defineConfig({
resolve: {
dedupe: ['@tresjs/core'],
},
plugins: [
vue({
script: {
propsDestructure: true,
},
isProduction: false,
template: {
compilerOptions: {
isCustomElement: tag => tag.startsWith('Tres') && tag !== 'TresCanvas',
},
},
}),
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: 'trescientos',
fileName: 'trescientos',
},
copyPublicDir: false,
watch: {
include: [resolve(__dirname, 'src')],
},
rollupOptions: {
plugins: [
analyze(),
visualizer({
gzipSize: true,
brotliSize: true,
open: true,
}),
],
external: ['three', 'vue', '@tresjs/core', 'tweakpane', '@tweakpane/core', '@tweakpane/plugin-essentials'],
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', 'tweakpane', '@tweakpane/core', '@tweakpane/plugin-essentials'],
},
})