antd-management-fast-develop 1.1.12 → 1.1.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/bin/cli.js +0 -0
- package/package.json +46 -44
- package/src/.umi/core/EmptyRoute.tsx +9 -0
- package/src/.umi/core/defineApp.ts +16 -0
- package/src/.umi/core/helmet.ts +10 -0
- package/src/.umi/core/helmetContext.ts +4 -0
- package/src/.umi/core/history.ts +66 -0
- package/src/.umi/core/historyIntelli.ts +132 -0
- package/src/.umi/core/plugin.ts +40 -0
- package/src/.umi/core/pluginConfig.ts +359 -0
- package/src/.umi/core/pluginConfigJoi.d.ts +7 -0
- package/src/.umi/core/polyfill.ts +201 -0
- package/src/.umi/core/route.tsx +29 -0
- package/src/.umi/core/routeProps.ts +6 -0
- package/src/.umi/core/terminal.ts +37 -0
- package/src/.umi/exports.ts +16 -0
- package/src/.umi/testBrowser.tsx +87 -0
- package/src/.umi/tsconfig.json +43 -0
- package/src/.umi/typings.d.ts +136 -0
- package/src/.umi/umi.ts +76 -0
@@ -0,0 +1,359 @@
|
|
1
|
+
// @ts-nocheck
|
2
|
+
// This file is generated by Umi automatically
|
3
|
+
// DO NOT CHANGE IT MANUALLY!
|
4
|
+
import { IConfigFromPluginsJoi } from "./pluginConfigJoi.d";
|
5
|
+
|
6
|
+
interface IConfigTypes {
|
7
|
+
codeSplitting: {
|
8
|
+
jsStrategy: "bigVendors" | "depPerChunk" | "granularChunks";
|
9
|
+
jsStrategyOptions?: ({
|
10
|
+
|
11
|
+
} | undefined);
|
12
|
+
cssStrategy?: ("mergeAll" | undefined);
|
13
|
+
cssStrategyOptions?: ({
|
14
|
+
|
15
|
+
} | undefined);
|
16
|
+
};
|
17
|
+
title: string;
|
18
|
+
styles: Array<string | {
|
19
|
+
src?: (string | undefined);
|
20
|
+
} | {
|
21
|
+
content?: (string | undefined);
|
22
|
+
} | { [x: string]: any }>;
|
23
|
+
scripts: Array<string | {
|
24
|
+
src?: (string | undefined);
|
25
|
+
} | {
|
26
|
+
content?: (string | undefined);
|
27
|
+
} | { [x: string]: any }>;
|
28
|
+
routes: Array<{
|
29
|
+
component?: (string | undefined);
|
30
|
+
layout?: (false | undefined);
|
31
|
+
path?: (string | undefined);
|
32
|
+
redirect?: (string | undefined);
|
33
|
+
routes?: IConfigTypes['routes'];
|
34
|
+
wrappers?: (Array<string> | undefined);
|
35
|
+
} | { [x: string]: any }>;
|
36
|
+
routeLoader: {
|
37
|
+
moduleType: "esm" | "cjs";
|
38
|
+
};
|
39
|
+
reactRouter5Compat: boolean | {
|
40
|
+
|
41
|
+
};
|
42
|
+
presets: Array<string>;
|
43
|
+
plugins: Array<string>;
|
44
|
+
npmClient: "pnpm" | "tnpm" | "cnpm" | "yarn" | "npm";
|
45
|
+
mountElementId: string;
|
46
|
+
metas: Array<{
|
47
|
+
charset?: (string | undefined);
|
48
|
+
content?: (string | undefined);
|
49
|
+
"http-equiv"?: (string | undefined);
|
50
|
+
name?: (string | undefined);
|
51
|
+
} | { [x: string]: any }>;
|
52
|
+
links: Array<{
|
53
|
+
crossorigin?: (string | undefined);
|
54
|
+
href?: (string | undefined);
|
55
|
+
hreflang?: (string | undefined);
|
56
|
+
media?: (string | undefined);
|
57
|
+
referrerpolicy?: (string | undefined);
|
58
|
+
rel?: (string | undefined);
|
59
|
+
sizes?: (any | undefined);
|
60
|
+
title?: (any | undefined);
|
61
|
+
type?: (any | undefined);
|
62
|
+
} | { [x: string]: any }>;
|
63
|
+
historyWithQuery: {
|
64
|
+
|
65
|
+
};
|
66
|
+
history: {
|
67
|
+
type: "browser" | "hash" | "memory";
|
68
|
+
};
|
69
|
+
headScripts: Array<string | {
|
70
|
+
src?: (string | undefined);
|
71
|
+
} | {
|
72
|
+
content?: (string | undefined);
|
73
|
+
} | { [x: string]: any }>;
|
74
|
+
esbuildMinifyIIFE: boolean;
|
75
|
+
conventionRoutes: {
|
76
|
+
base?: (string | undefined);
|
77
|
+
exclude?: (Array<any> | undefined);
|
78
|
+
};
|
79
|
+
conventionLayout: boolean;
|
80
|
+
base: string;
|
81
|
+
analyze: {
|
82
|
+
|
83
|
+
};
|
84
|
+
writeToDisk: boolean;
|
85
|
+
theme: { [x: string]: any };
|
86
|
+
targets: { [x: string]: any };
|
87
|
+
svgr: { [x: string]: any };
|
88
|
+
svgo: { [x: string]: any } | boolean;
|
89
|
+
styleLoader: { [x: string]: any };
|
90
|
+
srcTranspilerOptions: {
|
91
|
+
esbuild?: ({ [x: string]: any } | undefined);
|
92
|
+
swc?: ({ [x: string]: any } | undefined);
|
93
|
+
};
|
94
|
+
srcTranspiler: "babel" | "esbuild" | "swc" | "none";
|
95
|
+
sassLoader: { [x: string]: any };
|
96
|
+
runtimePublicPath: {
|
97
|
+
|
98
|
+
};
|
99
|
+
purgeCSS: { [x: string]: any };
|
100
|
+
publicPath: string;
|
101
|
+
proxy: { [x: string]: any } | Array<any>;
|
102
|
+
postcssLoader: { [x: string]: any };
|
103
|
+
outputPath: string;
|
104
|
+
normalCSSLoaderModules: { [x: string]: any };
|
105
|
+
mfsu: {
|
106
|
+
cacheDirectory?: (string | undefined);
|
107
|
+
chainWebpack?: (((...args: any[]) => unknown) | undefined);
|
108
|
+
esbuild?: (boolean | undefined);
|
109
|
+
exclude?: (Array<string | any> | undefined);
|
110
|
+
include?: (Array<string> | undefined);
|
111
|
+
mfName?: (string | undefined);
|
112
|
+
remoteAliases?: (Array<string> | undefined);
|
113
|
+
remoteName?: (string | undefined);
|
114
|
+
runtimePublicPath?: (boolean | undefined);
|
115
|
+
shared?: ({ [x: string]: any } | undefined);
|
116
|
+
strategy?: ("eager" | "normal" | undefined);
|
117
|
+
} | boolean;
|
118
|
+
mdx: {
|
119
|
+
loader?: (string | undefined);
|
120
|
+
loaderOptions?: ({ [x: string]: any } | undefined);
|
121
|
+
};
|
122
|
+
manifest: {
|
123
|
+
basePath?: (string | undefined);
|
124
|
+
fileName?: (string | undefined);
|
125
|
+
};
|
126
|
+
lessLoader: { [x: string]: any };
|
127
|
+
jsMinifierOptions: { [x: string]: any };
|
128
|
+
jsMinifier: "esbuild" | "swc" | "terser" | "uglifyJs" | "none";
|
129
|
+
inlineLimit: number;
|
130
|
+
ignoreMomentLocale: boolean;
|
131
|
+
https: {
|
132
|
+
cert?: (string | undefined);
|
133
|
+
hosts?: (Array<string> | undefined);
|
134
|
+
http2?: (boolean | undefined);
|
135
|
+
key?: (string | undefined);
|
136
|
+
};
|
137
|
+
hash: boolean;
|
138
|
+
forkTSChecker: { [x: string]: any };
|
139
|
+
fastRefresh: boolean;
|
140
|
+
extraPostCSSPlugins: Array<any>;
|
141
|
+
extraBabelPresets: Array<string | Array<any>>;
|
142
|
+
extraBabelPlugins: Array<string | Array<any>>;
|
143
|
+
extraBabelIncludes: Array<string | any>;
|
144
|
+
externals: { [x: string]: any } | string | ((...args: any[]) => unknown);
|
145
|
+
esm: {
|
146
|
+
|
147
|
+
};
|
148
|
+
devtool: "cheap-source-map" | "cheap-module-source-map" | "eval" | "eval-source-map" | "eval-cheap-source-map" | "eval-cheap-module-source-map" | "eval-nosources-cheap-source-map" | "eval-nosources-cheap-module-source-map" | "eval-nosources-source-map" | "source-map" | "hidden-source-map" | "hidden-nosources-cheap-source-map" | "hidden-nosources-cheap-module-source-map" | "hidden-nosources-source-map" | "hidden-cheap-source-map" | "hidden-cheap-module-source-map" | "inline-source-map" | "inline-cheap-source-map" | "inline-cheap-module-source-map" | "inline-nosources-cheap-source-map" | "inline-nosources-cheap-module-source-map" | "inline-nosources-source-map" | "nosources-source-map" | "nosources-cheap-source-map" | "nosources-cheap-module-source-map" | boolean;
|
149
|
+
depTranspiler: "babel" | "esbuild" | "swc" | "none";
|
150
|
+
define: { [x: string]: any };
|
151
|
+
deadCode: {
|
152
|
+
context?: (string | undefined);
|
153
|
+
detectUnusedExport?: (boolean | undefined);
|
154
|
+
detectUnusedFiles?: (boolean | undefined);
|
155
|
+
exclude?: (Array<string> | undefined);
|
156
|
+
failOnHint?: (boolean | undefined);
|
157
|
+
patterns?: (Array<string> | undefined);
|
158
|
+
};
|
159
|
+
cssMinifierOptions: { [x: string]: any };
|
160
|
+
cssMinifier: "cssnano" | "esbuild" | "parcelCSS" | "none";
|
161
|
+
cssLoaderModules: { [x: string]: any };
|
162
|
+
cssLoader: { [x: string]: any };
|
163
|
+
copy: Array<{
|
164
|
+
from: string;
|
165
|
+
to: string;
|
166
|
+
} | string>;
|
167
|
+
checkDepCssModules?: boolean;
|
168
|
+
cacheDirectoryPath: string;
|
169
|
+
babelLoaderCustomize: string;
|
170
|
+
autoprefixer: { [x: string]: any };
|
171
|
+
autoCSSModules: boolean;
|
172
|
+
alias: { [x: string]: any };
|
173
|
+
crossorigin: boolean | {
|
174
|
+
includes?: (Array<any> | undefined);
|
175
|
+
};
|
176
|
+
esmi: {
|
177
|
+
cdnOrigin: string;
|
178
|
+
shimUrl?: (string | undefined);
|
179
|
+
};
|
180
|
+
exportStatic: {
|
181
|
+
extraRoutePaths?: (((...args: any[]) => unknown) | Array<string> | undefined);
|
182
|
+
ignorePreRenderError?: (boolean | undefined);
|
183
|
+
};
|
184
|
+
favicons: Array<string>;
|
185
|
+
helmet: boolean;
|
186
|
+
icons: {
|
187
|
+
autoInstall?: ({
|
188
|
+
|
189
|
+
} | undefined);
|
190
|
+
defaultComponentConfig?: ({
|
191
|
+
|
192
|
+
} | undefined);
|
193
|
+
alias?: ({
|
194
|
+
|
195
|
+
} | undefined);
|
196
|
+
include?: (Array<string> | undefined);
|
197
|
+
};
|
198
|
+
mock: {
|
199
|
+
exclude?: (Array<string> | undefined);
|
200
|
+
include?: (Array<string> | undefined);
|
201
|
+
};
|
202
|
+
mpa: {
|
203
|
+
template?: (string | undefined);
|
204
|
+
layout?: (string | undefined);
|
205
|
+
getConfigFromEntryFile?: (boolean | undefined);
|
206
|
+
entry?: ({
|
207
|
+
|
208
|
+
} | undefined);
|
209
|
+
};
|
210
|
+
phantomDependency: {
|
211
|
+
exclude?: (Array<string> | undefined);
|
212
|
+
};
|
213
|
+
polyfill: {
|
214
|
+
imports?: (Array<string> | undefined);
|
215
|
+
};
|
216
|
+
routePrefetch: {
|
217
|
+
|
218
|
+
};
|
219
|
+
terminal: {
|
220
|
+
|
221
|
+
};
|
222
|
+
tmpFiles: boolean;
|
223
|
+
clientLoader: {
|
224
|
+
|
225
|
+
};
|
226
|
+
routeProps: {
|
227
|
+
|
228
|
+
};
|
229
|
+
ssr: {
|
230
|
+
serverBuildPath?: (string | undefined);
|
231
|
+
platform?: (string | undefined);
|
232
|
+
builder?: ("esbuild" | "webpack" | undefined);
|
233
|
+
};
|
234
|
+
lowImport: {
|
235
|
+
libs?: (Array<any> | undefined);
|
236
|
+
css?: (string | undefined);
|
237
|
+
};
|
238
|
+
vite: {
|
239
|
+
|
240
|
+
};
|
241
|
+
apiRoute: {
|
242
|
+
platform?: (string | undefined);
|
243
|
+
};
|
244
|
+
monorepoRedirect: boolean | {
|
245
|
+
srcDir?: (Array<string> | undefined);
|
246
|
+
exclude?: (Array<any> | undefined);
|
247
|
+
peerDeps?: (boolean | undefined);
|
248
|
+
};
|
249
|
+
test: {
|
250
|
+
|
251
|
+
};
|
252
|
+
clickToComponent: {
|
253
|
+
/** 默认情况下,点击将默认编辑器为vscode, 你可以设置编辑器 vscode 或者 vscode-insiders */
|
254
|
+
editor?: (string | undefined);
|
255
|
+
};
|
256
|
+
legacy: {
|
257
|
+
buildOnly?: (boolean | undefined);
|
258
|
+
nodeModulesTransform?: (boolean | undefined);
|
259
|
+
checkOutput?: (boolean | undefined);
|
260
|
+
};
|
261
|
+
/** 设置 babel class-properties 启用 loose
|
262
|
+
@doc https://umijs.org/docs/api/config#classpropertiesloose */
|
263
|
+
classPropertiesLoose: boolean | {
|
264
|
+
|
265
|
+
};
|
266
|
+
ui: {
|
267
|
+
|
268
|
+
};
|
269
|
+
hmrGuardian: boolean;
|
270
|
+
verifyCommit: {
|
271
|
+
scope?: (Array<string> | undefined);
|
272
|
+
allowEmoji?: (boolean | undefined);
|
273
|
+
};
|
274
|
+
run: {
|
275
|
+
globals?: (Array<string> | undefined);
|
276
|
+
};
|
277
|
+
access: { [x: string]: any };
|
278
|
+
analytics: {
|
279
|
+
baidu?: (string | undefined);
|
280
|
+
ga?: (string | undefined);
|
281
|
+
ga_v2?: (string | undefined);
|
282
|
+
};
|
283
|
+
antd: {
|
284
|
+
configProvider?: ({ [x: string]: any } | undefined);
|
285
|
+
dark?: (boolean | undefined);
|
286
|
+
compact?: (boolean | undefined);
|
287
|
+
import?: (boolean | undefined);
|
288
|
+
style?: ("less" | "css" | undefined);
|
289
|
+
theme?: ({ [x: string]: any } | undefined);
|
290
|
+
appConfig?: ({ [x: string]: any } | undefined);
|
291
|
+
momentPicker?: (boolean | undefined);
|
292
|
+
styleProvider?: ({ [x: string]: any } | undefined);
|
293
|
+
};
|
294
|
+
dva: {
|
295
|
+
extraModels?: (Array<string> | undefined);
|
296
|
+
immer?: ({ [x: string]: any } | undefined);
|
297
|
+
skipModelValidate?: (boolean | undefined);
|
298
|
+
};
|
299
|
+
initialState: {
|
300
|
+
loading?: (string | undefined);
|
301
|
+
};
|
302
|
+
layout: { [x: string]: any };
|
303
|
+
locale: {
|
304
|
+
default?: (string | undefined);
|
305
|
+
useLocalStorage?: (boolean | undefined);
|
306
|
+
baseNavigator?: (boolean | undefined);
|
307
|
+
title?: (boolean | undefined);
|
308
|
+
antd?: (boolean | undefined);
|
309
|
+
baseSeparator?: (string | undefined);
|
310
|
+
};
|
311
|
+
mf: {
|
312
|
+
name?: (string | undefined);
|
313
|
+
remotes?: (Array<{
|
314
|
+
aliasName?: (string | undefined);
|
315
|
+
name: string;
|
316
|
+
entry?: (string | undefined);
|
317
|
+
entries?: ({
|
318
|
+
|
319
|
+
} | undefined);
|
320
|
+
keyResolver?: (string | undefined);
|
321
|
+
}> | undefined);
|
322
|
+
shared?: ({ [x: string]: any } | undefined);
|
323
|
+
library?: ({ [x: string]: any } | undefined);
|
324
|
+
};
|
325
|
+
model: {
|
326
|
+
extraModels?: (Array<string> | undefined);
|
327
|
+
};
|
328
|
+
moment2dayjs: {
|
329
|
+
preset?: ("antd" | "antdv3" | "none" | undefined);
|
330
|
+
plugins?: (Array<string> | undefined);
|
331
|
+
};
|
332
|
+
qiankun: {
|
333
|
+
slave?: ({ [x: string]: any } | undefined);
|
334
|
+
master?: ({ [x: string]: any } | undefined);
|
335
|
+
externalQiankun?: (boolean | undefined);
|
336
|
+
};
|
337
|
+
reactQuery: {
|
338
|
+
devtool?: ({ [x: string]: any } | boolean | undefined);
|
339
|
+
queryClient?: ({ [x: string]: any } | boolean | undefined);
|
340
|
+
};
|
341
|
+
request: {
|
342
|
+
dataField?: (string | undefined);
|
343
|
+
};
|
344
|
+
styledComponents: {
|
345
|
+
babelPlugin?: ({ [x: string]: any } | undefined);
|
346
|
+
};
|
347
|
+
tailwindcss: { [x: string]: any };
|
348
|
+
valtio: {
|
349
|
+
|
350
|
+
};
|
351
|
+
};
|
352
|
+
|
353
|
+
type PrettifyWithCloseable<T> = {
|
354
|
+
[K in keyof T]: T[K] | false;
|
355
|
+
} & {};
|
356
|
+
|
357
|
+
export type IConfigFromPlugins = PrettifyWithCloseable<
|
358
|
+
IConfigFromPluginsJoi & Partial<IConfigTypes>
|
359
|
+
>;
|
@@ -0,0 +1,201 @@
|
|
1
|
+
// @ts-nocheck
|
2
|
+
// This file is generated by Umi automatically
|
3
|
+
// DO NOT CHANGE IT MANUALLY!
|
4
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.error.cause.js";
|
5
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.aggregate-error.js";
|
6
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.aggregate-error.cause.js";
|
7
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.array.at.js";
|
8
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.array.find-last.js";
|
9
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.array.find-last-index.js";
|
10
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.array.push.js";
|
11
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.array.reduce.js";
|
12
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.array.reduce-right.js";
|
13
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.array.to-reversed.js";
|
14
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.array.to-sorted.js";
|
15
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.array.to-spliced.js";
|
16
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.array.with.js";
|
17
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.object.has-own.js";
|
18
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.promise.any.js";
|
19
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.reflect.to-string-tag.js";
|
20
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.regexp.flags.js";
|
21
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.string.at-alternative.js";
|
22
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.string.replace-all.js";
|
23
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.typed-array.at.js";
|
24
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.typed-array.find-last.js";
|
25
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.typed-array.find-last-index.js";
|
26
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.typed-array.set.js";
|
27
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.typed-array.to-reversed.js";
|
28
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.typed-array.to-sorted.js";
|
29
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/es.typed-array.with.js";
|
30
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.suppressed-error.constructor.js";
|
31
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array.from-async.js";
|
32
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array.filter-out.js";
|
33
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array.filter-reject.js";
|
34
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array.group.js";
|
35
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array.group-by.js";
|
36
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array.group-by-to-map.js";
|
37
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array.group-to-map.js";
|
38
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array.is-template-object.js";
|
39
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array.last-index.js";
|
40
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array.last-item.js";
|
41
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array.unique-by.js";
|
42
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array-buffer.detached.js";
|
43
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array-buffer.transfer.js";
|
44
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.array-buffer.transfer-to-fixed-length.js";
|
45
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-disposable-stack.constructor.js";
|
46
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.constructor.js";
|
47
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.as-indexed-pairs.js";
|
48
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.async-dispose.js";
|
49
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.drop.js";
|
50
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.every.js";
|
51
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.filter.js";
|
52
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.find.js";
|
53
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.flat-map.js";
|
54
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.for-each.js";
|
55
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.from.js";
|
56
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.indexed.js";
|
57
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.map.js";
|
58
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.reduce.js";
|
59
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.some.js";
|
60
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.take.js";
|
61
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.async-iterator.to-array.js";
|
62
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.bigint.range.js";
|
63
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.composite-key.js";
|
64
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.composite-symbol.js";
|
65
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.disposable-stack.constructor.js";
|
66
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.function.demethodize.js";
|
67
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.function.is-callable.js";
|
68
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.function.is-constructor.js";
|
69
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.function.un-this.js";
|
70
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.constructor.js";
|
71
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.as-indexed-pairs.js";
|
72
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.dispose.js";
|
73
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.drop.js";
|
74
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.every.js";
|
75
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.filter.js";
|
76
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.find.js";
|
77
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.flat-map.js";
|
78
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.for-each.js";
|
79
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.from.js";
|
80
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.indexed.js";
|
81
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.map.js";
|
82
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.range.js";
|
83
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.reduce.js";
|
84
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.some.js";
|
85
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.take.js";
|
86
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.to-array.js";
|
87
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.iterator.to-async.js";
|
88
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.json.is-raw-json.js";
|
89
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.json.parse.js";
|
90
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.json.raw-json.js";
|
91
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.delete-all.js";
|
92
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.emplace.js";
|
93
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.every.js";
|
94
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.filter.js";
|
95
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.find.js";
|
96
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.find-key.js";
|
97
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.from.js";
|
98
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.group-by.js";
|
99
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.includes.js";
|
100
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.key-by.js";
|
101
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.key-of.js";
|
102
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.map-keys.js";
|
103
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.map-values.js";
|
104
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.merge.js";
|
105
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.of.js";
|
106
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.reduce.js";
|
107
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.some.js";
|
108
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.update.js";
|
109
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.update-or-insert.js";
|
110
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.map.upsert.js";
|
111
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.clamp.js";
|
112
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.deg-per-rad.js";
|
113
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.degrees.js";
|
114
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.fscale.js";
|
115
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.iaddh.js";
|
116
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.imulh.js";
|
117
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.isubh.js";
|
118
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.rad-per-deg.js";
|
119
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.radians.js";
|
120
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.scale.js";
|
121
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.seeded-prng.js";
|
122
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.signbit.js";
|
123
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.math.umulh.js";
|
124
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.number.from-string.js";
|
125
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.number.range.js";
|
126
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.object.iterate-entries.js";
|
127
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.object.iterate-keys.js";
|
128
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.object.iterate-values.js";
|
129
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.observable.js";
|
130
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.promise.try.js";
|
131
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.reflect.define-metadata.js";
|
132
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.reflect.delete-metadata.js";
|
133
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.reflect.get-metadata.js";
|
134
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.reflect.get-metadata-keys.js";
|
135
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.reflect.get-own-metadata.js";
|
136
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.reflect.get-own-metadata-keys.js";
|
137
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.reflect.has-metadata.js";
|
138
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.reflect.has-own-metadata.js";
|
139
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.reflect.metadata.js";
|
140
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.add-all.js";
|
141
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.delete-all.js";
|
142
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.difference.v2.js";
|
143
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.difference.js";
|
144
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.every.js";
|
145
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.filter.js";
|
146
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.find.js";
|
147
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.from.js";
|
148
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.intersection.v2.js";
|
149
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.intersection.js";
|
150
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.is-disjoint-from.v2.js";
|
151
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.is-disjoint-from.js";
|
152
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.is-subset-of.v2.js";
|
153
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.is-subset-of.js";
|
154
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.is-superset-of.v2.js";
|
155
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.is-superset-of.js";
|
156
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.join.js";
|
157
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.map.js";
|
158
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.of.js";
|
159
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.reduce.js";
|
160
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.some.js";
|
161
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.symmetric-difference.v2.js";
|
162
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.symmetric-difference.js";
|
163
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.union.v2.js";
|
164
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.set.union.js";
|
165
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.string.at.js";
|
166
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.string.cooked.js";
|
167
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.string.code-points.js";
|
168
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.string.dedent.js";
|
169
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.string.is-well-formed.js";
|
170
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.string.to-well-formed.js";
|
171
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.symbol.async-dispose.js";
|
172
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.symbol.dispose.js";
|
173
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.symbol.is-registered.js";
|
174
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.symbol.is-well-known.js";
|
175
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.symbol.matcher.js";
|
176
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.symbol.metadata.js";
|
177
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.symbol.metadata-key.js";
|
178
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.symbol.observable.js";
|
179
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.symbol.pattern-match.js";
|
180
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.symbol.replace-all.js";
|
181
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.typed-array.from-async.js";
|
182
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.typed-array.filter-out.js";
|
183
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.typed-array.filter-reject.js";
|
184
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.typed-array.group-by.js";
|
185
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.typed-array.to-spliced.js";
|
186
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.typed-array.unique-by.js";
|
187
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.weak-map.delete-all.js";
|
188
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.weak-map.from.js";
|
189
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.weak-map.of.js";
|
190
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.weak-map.emplace.js";
|
191
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.weak-map.upsert.js";
|
192
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.weak-set.add-all.js";
|
193
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.weak-set.delete-all.js";
|
194
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.weak-set.from.js";
|
195
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/esnext.weak-set.of.js";
|
196
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/web.dom-exception.stack.js";
|
197
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/web.immediate.js";
|
198
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/web.self.js";
|
199
|
+
import "E:/project/my/antd-management-fast-framework/node_modules/.pnpm/core-js@3.28.0/node_modules/core-js/modules/web.structured-clone.js";
|
200
|
+
import 'E:/project/my/antd-management-fast-framework/node_modules/.pnpm/regenerator-runtime@0.13.11/node_modules/regenerator-runtime/runtime.js';
|
201
|
+
export {};
|
@@ -0,0 +1,29 @@
|
|
1
|
+
// @ts-nocheck
|
2
|
+
// This file is generated by Umi automatically
|
3
|
+
// DO NOT CHANGE IT MANUALLY!
|
4
|
+
import routeProps from './routeProps';
|
5
|
+
|
6
|
+
if (process.env.NODE_ENV === 'development') {
|
7
|
+
Object.entries(routeProps).forEach(([key, value]) => {
|
8
|
+
const internalProps = ['path', 'id', 'parentId', 'isLayout', 'isWrapper', 'layout', 'clientLoader'];
|
9
|
+
Object.keys(value).forEach((prop) => {
|
10
|
+
if (internalProps.includes(prop)) {
|
11
|
+
throw new Error(
|
12
|
+
`[UmiJS] route '${key}' should not have '${prop}' prop, please remove this property in 'routeProps'.`
|
13
|
+
)
|
14
|
+
}
|
15
|
+
})
|
16
|
+
})
|
17
|
+
}
|
18
|
+
|
19
|
+
import React from 'react';
|
20
|
+
|
21
|
+
export async function getRoutes() {
|
22
|
+
const routes = {} as const;
|
23
|
+
return {
|
24
|
+
routes,
|
25
|
+
routeComponents: {
|
26
|
+
|
27
|
+
},
|
28
|
+
};
|
29
|
+
}
|