From 4348d21da80a1e54c94fb9528617b29090701080 Mon Sep 17 00:00:00 2001
From: Electrolux <59329360+electroluxcode@users.noreply.github.com>
Date: 星期一, 06 五月 2024 14:57:26 +0800
Subject: [PATCH] fix(imgUpload): disabled not effect in the form (#3809)

---
 tsconfig.json |   39 ++++++++++++++++++++-------------------
 1 files changed, 20 insertions(+), 19 deletions(-)

diff --git a/tsconfig.json b/tsconfig.json
index 3e24d6d..9c69499 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,26 +1,27 @@
 {
+  "$schema": "https://json.schemastore.org/tsconfig",
+  "extends": "@vben/ts-config/vue-app.json",
   "compilerOptions": {
-    "target": "esnext",
-    "module": "esnext",
-    "moduleResolution": "node",
-    "strict": true,
-    "forceConsistentCasingInFileNames": true,
-    "allowSyntheticDefaultImports": true,
-    "strictFunctionTypes": false,
-    "jsx": "react",
     "baseUrl": ".",
-    "allowJs": true,
-    "esModuleInterop": true,
-    "noUnusedLocals": true,
-    "noUnusedParameters": true,
-    "experimentalDecorators": true,
-    "lib": ["dom", "esnext"],
-    "incremental": true,
-    "skipLibCheck": true,
+    "declaration": false,
+    "types": ["vite/client"],
     "paths": {
-      "/@/*": ["src/*"],
-      "/@design/": ["src/design/index.less"]
+      "@/*": ["src/*"],
+      "#/*": ["types/*"]
     }
   },
-  "exclude": ["node_modules", "dist"]
+  "include": [
+    "tests/**/*.ts",
+    "src/**/*.ts",
+    "src/**/*.d.ts",
+    "src/**/*.tsx",
+    "src/**/*.vue",
+    "types/**/*.d.ts",
+    "types/**/*.ts",
+    "build/**/*.ts",
+    "build/**/*.d.ts",
+    "mock/**/*.ts",
+    "vite.config.ts"
+  ],
+  "exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
 }

--
Gitblit v1.8.0