mirror of
https://github.com/WeBankFinTech/fes.js.git
synced 2025-04-06 03:59:53 +08:00
fix: 解决 ts 提示问题 (#155)
This commit is contained in:
parent
8d4f8c1321
commit
92e154e48b
@ -29,12 +29,9 @@
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"*.js",
|
|
||||||
".fes*.js",
|
|
||||||
"src/**/*",
|
"src/**/*",
|
||||||
"typings/**/*",
|
"*.js",
|
||||||
"config/**/*",
|
".fes*.js"
|
||||||
"src/.fes/configType.d.ts"
|
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"build",
|
"build",
|
||||||
|
@ -33,8 +33,7 @@
|
|||||||
".fes*.js",
|
".fes*.js",
|
||||||
"src/**/*",
|
"src/**/*",
|
||||||
"typings/**/*",
|
"typings/**/*",
|
||||||
"config/**/*",
|
"config/**/*"
|
||||||
"src/.fes/configType.d.ts"
|
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": [
|
||||||
"build",
|
"build",
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
"version": "3.0.0-beta.6",
|
"version": "3.0.0-beta.6",
|
||||||
"description": "@fesjs/builder-webpack",
|
"description": "@fesjs/builder-webpack",
|
||||||
"main": "lib/index.js",
|
"main": "lib/index.js",
|
||||||
"types": "lib/index.d.ts",
|
"types": "types.d.ts",
|
||||||
"files": [
|
"files": [
|
||||||
"lib",
|
"lib",
|
||||||
"types.d.ts"
|
"types.d.ts"
|
||||||
|
20
packages/fes-plugin-access/types.d.ts
vendored
20
packages/fes-plugin-access/types.d.ts
vendored
@ -1,6 +1,16 @@
|
|||||||
import { Router, NavigationGuard } from 'vue-router';
|
import { Router, NavigationGuard } from 'vue-router';
|
||||||
import { Ref } from 'vue';
|
import { Ref } from 'vue';
|
||||||
|
|
||||||
|
export function access(): {
|
||||||
|
hasAccess(accessId: string | number): Promise<boolean>;
|
||||||
|
isDataReady(): boolean;
|
||||||
|
setRole(roleId: string | Promise<string>): void;
|
||||||
|
setAccess(accessIds: Array<string | number> | Promise<Array<string | number>>): void;
|
||||||
|
getAccess(): string[];
|
||||||
|
};
|
||||||
|
|
||||||
|
export function useAccess(accessId: Array<string | number>): Ref<boolean>;
|
||||||
|
|
||||||
declare module '@fesjs/fes' {
|
declare module '@fesjs/fes' {
|
||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
access?:
|
access?:
|
||||||
@ -16,14 +26,4 @@ declare module '@fesjs/fes' {
|
|||||||
unAccessHandler: (param: { router: Router } & NavigationGuard) => void;
|
unAccessHandler: (param: { router: Router } & NavigationGuard) => void;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export function access(): {
|
|
||||||
hasAccess(accessId: string | number): Promise<boolean>;
|
|
||||||
isDataReady(): boolean;
|
|
||||||
setRole(roleId: string | Promise<string>): void;
|
|
||||||
setAccess(accessIds: Array<string | number> | Promise<Array<string | number>>): void;
|
|
||||||
getAccess(): string[];
|
|
||||||
};
|
|
||||||
|
|
||||||
export function useAccess(accessId: Array<string | number>): Ref<boolean>;
|
|
||||||
}
|
}
|
||||||
|
3
packages/fes-plugin-enums/types.d.ts
vendored
3
packages/fes-plugin-enums/types.d.ts
vendored
@ -14,12 +14,11 @@ interface EnumApi {
|
|||||||
convert(name: string, _enum?: [] | object, option?: { keyName: string; valueName: string }): any;
|
convert(name: string, _enum?: [] | object, option?: { keyName: string; valueName: string }): any;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const enums: EnumApi;
|
||||||
declare module '@fesjs/fes' {
|
declare module '@fesjs/fes' {
|
||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
enums?: {
|
enums?: {
|
||||||
[key: string]: [string | number, string | number][];
|
[key: string]: [string | number, string | number][];
|
||||||
} | false;
|
} | false;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const enums: EnumApi;
|
|
||||||
}
|
}
|
||||||
|
2
packages/fes-plugin-layout/types.d.ts
vendored
2
packages/fes-plugin-layout/types.d.ts
vendored
@ -10,6 +10,7 @@ interface Menu {
|
|||||||
children?: Menu[];
|
children?: Menu[];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export const Page: Component;
|
||||||
declare module '@fesjs/fes' {
|
declare module '@fesjs/fes' {
|
||||||
interface RouteMeta {
|
interface RouteMeta {
|
||||||
'keep-alive'?: boolean;
|
'keep-alive'?: boolean;
|
||||||
@ -61,5 +62,4 @@ declare module '@fesjs/fes' {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
export const Page: Component;
|
|
||||||
}
|
}
|
||||||
|
15
packages/fes-plugin-locale/types.d.ts
vendored
15
packages/fes-plugin-locale/types.d.ts
vendored
@ -1,5 +1,11 @@
|
|||||||
import '@fesjs/fes';
|
import '@fesjs/fes';
|
||||||
|
|
||||||
|
export const locale: {
|
||||||
|
setLocale({ locale }: { locale: string }): void;
|
||||||
|
addLocale({ locale, messages }: { locale: string; messages: object }): void;
|
||||||
|
getAllLocales(): string[];
|
||||||
|
messages: Record<string, object>;
|
||||||
|
};
|
||||||
declare module '@fesjs/fes' {
|
declare module '@fesjs/fes' {
|
||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
locale?:
|
locale?:
|
||||||
@ -11,13 +17,4 @@ declare module '@fesjs/fes' {
|
|||||||
}
|
}
|
||||||
| false;
|
| false;
|
||||||
}
|
}
|
||||||
|
|
||||||
// export * from 'vue-i18n';
|
|
||||||
|
|
||||||
export const locale: {
|
|
||||||
setLocale({ locale }: { locale: string }): void;
|
|
||||||
addLocale({ locale, messages }: { locale: string; messages: object }): void;
|
|
||||||
getAllLocales(): string[];
|
|
||||||
messages: Record<string, object>;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
3
packages/fes-plugin-model/types.d.ts
vendored
3
packages/fes-plugin-model/types.d.ts
vendored
@ -1,10 +1,9 @@
|
|||||||
import '@fesjs/fes';
|
import '@fesjs/fes';
|
||||||
|
|
||||||
|
export function useModel(moduleId: string): any;
|
||||||
declare module '@fesjs/fes' {
|
declare module '@fesjs/fes' {
|
||||||
|
|
||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
model?: {} | false;
|
model?: {} | false;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function useModel(moduleId: string): any;
|
|
||||||
}
|
}
|
||||||
|
3
packages/fes-plugin-monaco-editor/types.d.ts
vendored
3
packages/fes-plugin-monaco-editor/types.d.ts
vendored
@ -2,6 +2,7 @@ import type { Component } from 'vue';
|
|||||||
import type { EditorLanguage } from 'monaco-editor-webpack-plugin/out/languages';
|
import type { EditorLanguage } from 'monaco-editor-webpack-plugin/out/languages';
|
||||||
import type { EditorFeature } from 'monaco-editor-webpack-plugin/out/features';
|
import type { EditorFeature } from 'monaco-editor-webpack-plugin/out/features';
|
||||||
|
|
||||||
|
export const MonacoEditor: Component;
|
||||||
declare module '@fesjs/fes' {
|
declare module '@fesjs/fes' {
|
||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
monacoEditor?: {
|
monacoEditor?: {
|
||||||
@ -12,6 +13,4 @@ declare module '@fesjs/fes' {
|
|||||||
globalAPI: boolean;
|
globalAPI: boolean;
|
||||||
} | false;
|
} | false;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const MonacoEditor: Component;
|
|
||||||
}
|
}
|
||||||
|
@ -2,6 +2,7 @@ import { readFileSync } from 'fs';
|
|||||||
import { join } from 'path';
|
import { join } from 'path';
|
||||||
import { winPath } from '@fesjs/utils';
|
import { winPath } from '@fesjs/utils';
|
||||||
import { parseStore } from './helper';
|
import { parseStore } from './helper';
|
||||||
|
import { name } from '../package.json';
|
||||||
|
|
||||||
const namespace = 'plugin-pinia';
|
const namespace = 'plugin-pinia';
|
||||||
|
|
||||||
@ -52,4 +53,8 @@ export default (api) => {
|
|||||||
]);
|
]);
|
||||||
|
|
||||||
api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`);
|
api.addRuntimePlugin(() => `@@/${absRuntimeFilePath}`);
|
||||||
|
|
||||||
|
api.addConfigType(() => ({
|
||||||
|
source: name,
|
||||||
|
}));
|
||||||
};
|
};
|
||||||
|
3
packages/fes-plugin-pinia/types.d.ts
vendored
3
packages/fes-plugin-pinia/types.d.ts
vendored
@ -1,9 +1,8 @@
|
|||||||
import type { Pinia } from 'pinia';
|
import type { Pinia } from 'pinia';
|
||||||
|
|
||||||
|
export const pinia: Pinia;
|
||||||
declare module '@fesjs/fes' {
|
declare module '@fesjs/fes' {
|
||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
pinia?: {} | false;
|
pinia?: {} | false;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const pinia: Pinia;
|
|
||||||
}
|
}
|
||||||
|
4
packages/fes-plugin-qiankun/types.d.ts
vendored
4
packages/fes-plugin-qiankun/types.d.ts
vendored
@ -7,8 +7,7 @@ interface AppOption {
|
|||||||
props: Record<string, any>;
|
props: Record<string, any>;
|
||||||
}
|
}
|
||||||
|
|
||||||
declare module '@fesjs/fes' {
|
export interface PluginBuildConfig {
|
||||||
interface PluginBuildConfig {
|
|
||||||
qiankun?:
|
qiankun?:
|
||||||
| {
|
| {
|
||||||
main?: {
|
main?: {
|
||||||
@ -23,4 +22,3 @@ declare module '@fesjs/fes' {
|
|||||||
|
|
||||||
export const MicroApp: Component;
|
export const MicroApp: Component;
|
||||||
export const MicroAppWithMemoHistory: Component;
|
export const MicroAppWithMemoHistory: Component;
|
||||||
}
|
|
||||||
|
4
packages/fes-plugin-request/types.d.ts
vendored
4
packages/fes-plugin-request/types.d.ts
vendored
@ -13,6 +13,8 @@ interface RequestPluginOption {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function request(url: string, data: null | Record<string, any>, options: AxiosRequestConfig & RequestPluginOption ): Promise<any>
|
||||||
|
export function useRequest(url: string, data: null | Record<string, any>, options: AxiosRequestConfig & RequestPluginOption ): {loadingRef: Ref<boolean>; errorRef: Ref<Error>; dataRef: Ref<any>}
|
||||||
declare module "@fesjs/fes" {
|
declare module "@fesjs/fes" {
|
||||||
interface PluginRuntimeConfig {
|
interface PluginRuntimeConfig {
|
||||||
request?: {
|
request?: {
|
||||||
@ -22,6 +24,4 @@ declare module "@fesjs/fes" {
|
|||||||
responseInterceptors?: ResponseInterceptor[];
|
responseInterceptors?: ResponseInterceptor[];
|
||||||
} & AxiosRequestConfig;
|
} & AxiosRequestConfig;
|
||||||
}
|
}
|
||||||
export function request(url: string, data: null | Record<string, any>, options: AxiosRequestConfig & RequestPluginOption ): Promise<any>
|
|
||||||
export function useRequest(url: string, data: null | Record<string, any>, options: AxiosRequestConfig & RequestPluginOption ): {loadingRef: Ref<boolean>; errorRef: Ref<Error>; dataRef: Ref<any>}
|
|
||||||
}
|
}
|
2
packages/fes-plugin-sass/types.d.ts
vendored
2
packages/fes-plugin-sass/types.d.ts
vendored
@ -1,4 +1,4 @@
|
|||||||
import '@fesjs/fes';
|
|
||||||
|
|
||||||
declare module '@fesjs/fes' {
|
declare module '@fesjs/fes' {
|
||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
|
16
packages/fes-plugin-vuex/types.d.ts
vendored
16
packages/fes-plugin-vuex/types.d.ts
vendored
@ -1,4 +1,11 @@
|
|||||||
import '@fesjs/fes';
|
|
||||||
|
export const MUTATION_TYPES: object;
|
||||||
|
|
||||||
|
export const ACTION_TYPES: object;
|
||||||
|
|
||||||
|
export const GETTER_TYPES: object;
|
||||||
|
|
||||||
|
export const store: object;
|
||||||
declare module '@fesjs/fes' {
|
declare module '@fesjs/fes' {
|
||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
vuex?:
|
vuex?:
|
||||||
@ -9,11 +16,4 @@ declare module '@fesjs/fes' {
|
|||||||
| false;
|
| false;
|
||||||
}
|
}
|
||||||
|
|
||||||
export const MUTATION_TYPES: object;
|
|
||||||
|
|
||||||
export const ACTION_TYPES: object;
|
|
||||||
|
|
||||||
export const GETTER_TYPES: object;
|
|
||||||
|
|
||||||
export const store: object;
|
|
||||||
}
|
}
|
5
packages/fes-plugin-watermark/types.d.ts
vendored
5
packages/fes-plugin-watermark/types.d.ts
vendored
@ -14,6 +14,8 @@ interface WatermarkParam {
|
|||||||
zIndex: number;
|
zIndex: number;
|
||||||
timestamp: string;
|
timestamp: string;
|
||||||
}
|
}
|
||||||
|
export function createWatermark(param: WatermarkParam): void;
|
||||||
|
export function destroyWatermark(): void;
|
||||||
|
|
||||||
declare module '@fesjs/fes' {
|
declare module '@fesjs/fes' {
|
||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
@ -21,7 +23,4 @@ declare module '@fesjs/fes' {
|
|||||||
disable: boolean;
|
disable: boolean;
|
||||||
} | false;
|
} | false;
|
||||||
}
|
}
|
||||||
|
|
||||||
export function createWatermark(param: WatermarkParam): void;
|
|
||||||
export function destroyWatermark(): void;
|
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
function importsToStr(imports) {
|
function importsToStr(imports) {
|
||||||
return imports.map((imp) => {
|
return imports.map((imp) => {
|
||||||
const { source } = imp;
|
const { source } = imp;
|
||||||
return `import '${source}';`;
|
return `export * from '${source}';`;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
29
packages/fes-preset-built-in/types.d.ts
vendored
29
packages/fes-preset-built-in/types.d.ts
vendored
@ -19,7 +19,22 @@ interface ClientRenderOption {
|
|||||||
type RenderFunc = () => Promise<App>
|
type RenderFunc = () => Promise<App>
|
||||||
|
|
||||||
|
|
||||||
declare module "@fesjs/fes" {
|
|
||||||
|
export function getRouter(): Router;
|
||||||
|
export function getHistory(): RouterHistory;
|
||||||
|
export function destroyRouter(): void;
|
||||||
|
|
||||||
|
declare module '@fesjs/fes' {
|
||||||
|
interface PluginRuntimeConfig {
|
||||||
|
beforeRender?: (option: BeforeRenderConfig) => BeforeRenderConfig;
|
||||||
|
patchRoutes?: ({ routes }: { routes: RouteRecordRaw[] }) => void;
|
||||||
|
modifyClientRenderOpts?: (option: ClientRenderOption) => ClientRenderOption;
|
||||||
|
rootContainer?: (component: DefineComponent, option: { routes: RouteRecordRaw[], plugin: Plugin }) => Component;
|
||||||
|
onAppCreated?: ({ app, routes }: { app: App, routes: RouteRecordRaw[] }) => void;
|
||||||
|
render?: (defaultRender: RenderFunc) => RenderFunc;
|
||||||
|
onRouterCreated?: ({ router }: { router: Router }) => void;
|
||||||
|
}
|
||||||
|
|
||||||
interface PluginBuildConfig {
|
interface PluginBuildConfig {
|
||||||
alias?: Record<string, string>,
|
alias?: Record<string, string>,
|
||||||
autoprefixer?: {
|
autoprefixer?: {
|
||||||
@ -81,17 +96,5 @@ declare module "@fesjs/fes" {
|
|||||||
terserOptions?: object;
|
terserOptions?: object;
|
||||||
title?: string;
|
title?: string;
|
||||||
}
|
}
|
||||||
interface PluginRuntimeConfig {
|
|
||||||
beforeRender?: (option: BeforeRenderConfig) => BeforeRenderConfig;
|
|
||||||
patchRoutes?: ({ routes }: { routes: RouteRecordRaw[] }) => void;
|
|
||||||
modifyClientRenderOpts?: (option: ClientRenderOption) => ClientRenderOption;
|
|
||||||
rootContainer?: (component: DefineComponent, option: { routes: RouteRecordRaw[], plugin: Plugin }) => Component;
|
|
||||||
onAppCreated?: ({ app, routes }: { app: App, routes: RouteRecordRaw[] }) => void;
|
|
||||||
render?: (defaultRender: RenderFunc) => RenderFunc;
|
|
||||||
onRouterCreated?: ({ router }: { router: Router }) => void;
|
|
||||||
}
|
|
||||||
|
|
||||||
export function getRouter(): Router;
|
|
||||||
export function getHistory(): RouterHistory;
|
|
||||||
export function destroyRouter(): void;
|
|
||||||
}
|
}
|
||||||
|
@ -3,10 +3,7 @@
|
|||||||
"outDir": "build/dist",
|
"outDir": "build/dist",
|
||||||
"module": "esnext",
|
"module": "esnext",
|
||||||
"target": "esnext",
|
"target": "esnext",
|
||||||
"lib": [
|
"lib": ["esnext", "dom"],
|
||||||
"esnext",
|
|
||||||
"dom"
|
|
||||||
],
|
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"jsx": "preserve",
|
"jsx": "preserve",
|
||||||
@ -17,31 +14,18 @@
|
|||||||
"suppressImplicitAnyIndexErrors": true,
|
"suppressImplicitAnyIndexErrors": true,
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"paths": {
|
"paths": {
|
||||||
"@/*": [
|
"@/*": ["./src/*"],
|
||||||
"./src/*"
|
"@@/*": ["./src/.fes/*"]
|
||||||
],
|
|
||||||
"@@/*": [
|
|
||||||
"./src/.fes/*"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"*.js",
|
|
||||||
".fes.js",
|
|
||||||
"src/**/*",
|
"src/**/*",
|
||||||
"typings/**/*",
|
".fes.js",
|
||||||
"config/**/*",
|
".fes.*.js"
|
||||||
"src/.fes/configType.d.ts"
|
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"]
|
||||||
"build",
|
|
||||||
"dist",
|
|
||||||
"scripts",
|
|
||||||
"webpack",
|
|
||||||
"jest",
|
|
||||||
"node_modules"
|
|
||||||
]
|
|
||||||
}
|
}
|
@ -1,6 +1,6 @@
|
|||||||
// .fes.js 只负责管理编译时配置,只能使用plain Object
|
import { defineBuildConfig } from "@fesjs/fes";
|
||||||
|
|
||||||
export default {
|
export default defineBuildConfig({
|
||||||
// exportStatic: {},
|
// exportStatic: {},
|
||||||
define: {
|
define: {
|
||||||
__DEV__: false
|
__DEV__: false
|
||||||
@ -84,5 +84,5 @@ export default {
|
|||||||
dynamicImport: true,
|
dynamicImport: true,
|
||||||
monacoEditor: {
|
monacoEditor: {
|
||||||
languages: ['javascript', 'typescript', 'html', 'json']
|
languages: ['javascript', 'typescript', 'html', 'json']
|
||||||
}
|
},
|
||||||
};
|
});
|
||||||
|
@ -1,3 +1,5 @@
|
|||||||
|
import { defineBuildConfig } from "@fesjs/fes";
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
// define: {
|
// define: {
|
||||||
// __DEV__: true
|
// __DEV__: true
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
// .fes.js 只负责管理编译时配置,只能使用plain Object
|
import { defineBuildConfig } from "@fesjs/fes";
|
||||||
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
publicPath: 'https://gw.alipayobjects.com/'
|
publicPath: 'https://gw.alipayobjects.com/'
|
||||||
|
@ -24,15 +24,8 @@
|
|||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"src/**/*",
|
"src/**/*",
|
||||||
"tests/**/*",
|
".fes.js",
|
||||||
"test/**/*",
|
".fes.*.js"
|
||||||
"__test__/**/*",
|
|
||||||
"typings/**/*",
|
|
||||||
"config/**/*",
|
|
||||||
".eslintrc.js",
|
|
||||||
".stylelintrc.js",
|
|
||||||
".prettierrc.js",
|
|
||||||
"src/.fes/configType.d.ts"
|
|
||||||
],
|
],
|
||||||
"exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"]
|
"exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"]
|
||||||
}
|
}
|
||||||
|
@ -3,10 +3,7 @@
|
|||||||
"outDir": "build/dist",
|
"outDir": "build/dist",
|
||||||
"module": "esnext",
|
"module": "esnext",
|
||||||
"target": "esnext",
|
"target": "esnext",
|
||||||
"lib": [
|
"lib": ["esnext", "dom"],
|
||||||
"esnext",
|
|
||||||
"dom"
|
|
||||||
],
|
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
"baseUrl": ".",
|
"baseUrl": ".",
|
||||||
"jsx": "preserve",
|
"jsx": "preserve",
|
||||||
@ -17,31 +14,18 @@
|
|||||||
"suppressImplicitAnyIndexErrors": true,
|
"suppressImplicitAnyIndexErrors": true,
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
"allowJs": true,
|
"allowJs": true,
|
||||||
|
"skipLibCheck": true,
|
||||||
"experimentalDecorators": true,
|
"experimentalDecorators": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"paths": {
|
"paths": {
|
||||||
"@/*": [
|
"@/*": ["./src/*"],
|
||||||
"./src/*"
|
"@@/*": ["./src/.fes/*"]
|
||||||
],
|
|
||||||
"@@/*": [
|
|
||||||
"./src/.fes/*"
|
|
||||||
]
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"include": [
|
"include": [
|
||||||
"*.js",
|
|
||||||
".fes.js",
|
|
||||||
"src/**/*",
|
"src/**/*",
|
||||||
"typings/**/*",
|
".fes.js",
|
||||||
"config/**/*",
|
".fes.*.js"
|
||||||
"src/.fes/configType.d.ts"
|
|
||||||
],
|
],
|
||||||
"exclude": [
|
"exclude": ["node_modules", "build", "dist", "scripts", "src/.fes/*", "webpack", "jest"]
|
||||||
"build",
|
|
||||||
"dist",
|
|
||||||
"scripts",
|
|
||||||
"webpack",
|
|
||||||
"jest",
|
|
||||||
"node_modules"
|
|
||||||
]
|
|
||||||
}
|
}
|
3
packages/fes/types.d.ts
vendored
3
packages/fes/types.d.ts
vendored
@ -1,5 +1,4 @@
|
|||||||
// @ts-ignore
|
export * from '@@/configType'
|
||||||
import '@@/configType';
|
|
||||||
|
|
||||||
export * from '@fesjs/runtime';
|
export * from '@fesjs/runtime';
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user