From 7ed1e4f30ba4d8204152cb157ceaee07374da080 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期一, 17 三月 2025 14:29:14 +0800
Subject: [PATCH] fix: 修改支付方式选择

---
 apps/h5/tsconfig.json |   63 +++++++++++++++++++++----------
 1 files changed, 43 insertions(+), 20 deletions(-)

diff --git a/apps/h5/tsconfig.json b/apps/h5/tsconfig.json
index 217b914..e49306f 100644
--- a/apps/h5/tsconfig.json
+++ b/apps/h5/tsconfig.json
@@ -1,32 +1,55 @@
 {
-  "extends": "../../tsconfig.base.json",
   "compilerOptions": {
+    "module": "ESNext",
+    "moduleResolution": "Node",
+    "useDefineForClassFields": true,
+    "jsx": "preserve",
+    "jsxImportSource": "vue",
+
+    "noImplicitThis": true,
+    "isolatedModules": true,
+
+    "target": "ESNext",
+
+    "esModuleInterop": true,
+    "forceConsistentCasingInFileNames": true,
+    "skipLibCheck": true,
+
+    "strict": false,
     "baseUrl": ".",
-    "ignoreDeprecations": "5.0",
+    "allowJs": true,
+    "importsNotUsedAsValues": "preserve",
+    "preserveValueImports": false,
+    "resolveJsonModule": true,
+    "lib": ["dom", "esnext"],
+    "incremental": true,
     "paths": {
-      "@life-payment/*": ["../../packages/*"],
-      "@/*": ["src/*"]
+      "@/*": ["src/*"],
+      "@build/*": ["build/*"],
+      "@config/*": ["config/*"],
+      "@mock/*": ["mock/*"]
+      // "@bole-core/*": ["packages/*"]
     },
-    "composite": true,
     "types": [
       "node",
-      "../../packages/services/api/typings.d.ts",
-      "../../packages/services/types.d.ts",
-      "../../packages/services/globalType.d.ts",
-      "@tarojs/components/vue3"
+      "vite/client",
+      "vite-svg-loader",
+      "element-plus/global",
+      "@bole-core/components/global"
     ]
+    // "typeRoots": ["./node_modules/@types/", "./types"]
   },
   "include": [
-    "./src/**/*",
-    "./types/**/*.d.ts",
-    "./components.d.ts",
-    "./auto-imports.d.ts",
-    "../../types/api.d.ts"
+    "src/**/*.ts",
+    "build/**/*.ts",
+    "src/**/*.d.ts",
+    "src/**/*.tsx",
+    "src/**/*.vue",
+    "types/**/*.d.ts",
+    "vite.config.ts",
+    "auto-imports.d.ts",
+    "components.d.ts",
+    "lib/vuedraggable/dist/vuedraggable.umd.js"
   ],
-  "exclude": ["node_modules", "dist"],
-  "references": [
-    { "path": "../../packages/components" },
-    { "path": "../../packages/constants" },
-    { "path": "../../packages/utils" }
-  ]
+  "exclude": ["node_modules", "dist"]
 }

--
Gitblit v1.9.1