mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-05 03:05:07 +08:00
feat: 构建类型定义
This commit is contained in:
parent
a9ffca2262
commit
1e2198b671
@ -1,4 +1,3 @@
|
||||
|
||||
module.exports = {
|
||||
copy: ['index.js']
|
||||
copy: ['index.js'],
|
||||
};
|
||||
|
21
packages/fes/types.d.ts
vendored
21
packages/fes/types.d.ts
vendored
@ -2,6 +2,7 @@ import { Component, DefineComponent, App } from 'vue';
|
||||
import { RouteRecordRaw, Router } from 'vue-router';
|
||||
import { Plugin } from '@fesjs/runtime';
|
||||
import { PluginRuntimeConfig } from '@@/runtime';
|
||||
import { PluginBuildConfig } from '@@/build';
|
||||
|
||||
// @ts-ignore
|
||||
export * from '@@/core/coreExports';
|
||||
@ -43,3 +44,23 @@ interface InnerRuntimeConfig {
|
||||
|
||||
export function defineRuntimeConfig(config: InnerRuntimeConfig & PluginRuntimeConfig): InnerRuntimeConfig & PluginRuntimeConfig;
|
||||
|
||||
|
||||
interface InnerBuildConfig {
|
||||
base: string;
|
||||
dynamicImport: boolean;
|
||||
mock: boolean | {
|
||||
prefix: string;
|
||||
};
|
||||
mountElementId: string;
|
||||
plugins: string[];
|
||||
proxy: {
|
||||
[apiPrefix: string]: {
|
||||
target: string;
|
||||
changeOrigin?: boolean;
|
||||
}
|
||||
};
|
||||
singular: boolean;
|
||||
}
|
||||
|
||||
export function defineBuildConfig(config: InnerBuildConfig & PluginBuildConfig ): InnerBuildConfig & PluginBuildConfig;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user