mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-30 22:42:41 +08:00
11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
import type {UserConfig} from 'vite';
|
|
import type {Options} from '@vitejs/plugin-vue'
|
|
import createPlugin from '@vitejs/plugin-vue-jsx'
|
|
|
|
|
|
export interface ViteBuildConfig {
|
|
viteOption: UserConfig;
|
|
viteVuePlugin: Options;
|
|
viteVueJsx: Parameters<typeof createPlugin>[0];
|
|
}
|