From ea89b8937d8102a52676120ca74887fa340abb97 Mon Sep 17 00:00:00 2001
From: zhengyiming <540361168@qq.com>
Date: 星期三, 26 三月 2025 08:54:07 +0800
Subject: [PATCH] fix: 三期bug

---
 apps/h5/tsconfig.json |   55 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 55 insertions(+), 0 deletions(-)

diff --git a/apps/h5/tsconfig.json b/apps/h5/tsconfig.json
new file mode 100644
index 0000000..e49306f
--- /dev/null
+++ b/apps/h5/tsconfig.json
@@ -0,0 +1,55 @@
+{
+  "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": ".",
+    "allowJs": true,
+    "importsNotUsedAsValues": "preserve",
+    "preserveValueImports": false,
+    "resolveJsonModule": true,
+    "lib": ["dom", "esnext"],
+    "incremental": true,
+    "paths": {
+      "@/*": ["src/*"],
+      "@build/*": ["build/*"],
+      "@config/*": ["config/*"],
+      "@mock/*": ["mock/*"]
+      // "@bole-core/*": ["packages/*"]
+    },
+    "types": [
+      "node",
+      "vite/client",
+      "vite-svg-loader",
+      "element-plus/global",
+      "@bole-core/components/global"
+    ]
+    // "typeRoots": ["./node_modules/@types/", "./types"]
+  },
+  "include": [
+    "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"]
+}

--
Gitblit v1.9.1