feat(tooling): add vite config to tooling pkgs

Signed-off-by: braks <78412429+bcakmakoglu@users.noreply.github.com>
This commit is contained in:
braks
2023-02-22 20:20:11 +01:00
committed by Braks
parent 2a6077ed9f
commit 8dd453634c
9 changed files with 193 additions and 67 deletions
+3
View File
@@ -0,0 +1,3 @@
import type { UserConfig } from 'vite';
export declare function withConfig(viteConfig: UserConfig): UserConfig;
+55
View File
@@ -0,0 +1,55 @@
const { defu } = require('defu')
const vue = require('@vitejs/plugin-vue')
const AutoImport = require('unplugin-auto-import/vite')
const VueMacros = require('unplugin-vue-macros/vite')
function withConfig(viteConfig) {
return defu(viteConfig, {
// https://vitejs.dev/config/
resolve: {
extensions: ['.ts', '.vue'],
},
build: {
emptyOutDir: false,
rollupOptions: {
// make sure to externalize deps that shouldn't be bundled
// into your library
external: ['vue', '@vue-flow/core'],
output: {
dir: './dist',
// Provide global variables to use in the UMD build
// for externalized deps
globals: {
'vue': 'Vue',
'@vue-flow/core': 'VueFlow',
},
},
},
},
plugins: [
VueMacros({
hoistStatic: false,
setupBlock: false,
shortEmits: false,
defineModel: false,
definePropsRefs: false,
setupComponent: false,
setupSFC: false,
exportProps: false,
plugins: {
vue: vue({
reactivityTransform: true,
}),
},
}),
AutoImport({
imports: ['vue', 'vue/macros'],
dts: 'src/auto-imports.d.ts',
}),
],
})
}
module.exports = {
withConfig,
}