神仙都没用 1 жил өмнө
parent
commit
e2a99d1439

+ 1 - 1
build/cool/base.ts

@@ -1,4 +1,4 @@
-import { Plugin } from "vite";
+import type { Plugin } from "vite";
 import { createSvg } from "./svg";
 import { createTag } from "./tag";
 import { createEps } from "./eps";

+ 2 - 2
build/cool/eps/index.ts

@@ -22,7 +22,7 @@ async function getData(temps?: Eps.Entity[]) {
 	// 本地文件
 	try {
 		list = JSON.parse(readFile(join(DistPath, "eps.json")) || "[]");
-	} catch (err) {
+	} catch (err: any) {
 		error(`[eps] ${join(DistPath, "eps.json")} 文件异常, ${err.message}`);
 	}
 
@@ -87,7 +87,7 @@ function createJson() {
 // 创建描述文件
 async function createDescribe({ list, service }: { list: Eps.Entity[]; service: any }) {
 	// 获取类型
-	function getType({ propertyName, type }) {
+	function getType({ propertyName, type }: any) {
 		for (const map of Entity.mapping) {
 			if (map.custom) {
 				const resType = map.custom({ propertyName, type });