From 85441ede2c0d323cf69d771e16141550333abb7a Mon Sep 17 00:00:00 2001
From: ZhangXianQiang <1135831638@qq.com>
Date: 星期五, 08 三月 2024 15:41:59 +0800
Subject: [PATCH] fix:修改滚动table

---
 tsconfig.json |   36 ++++++++++++++++++++++++++++++++----
 1 files changed, 32 insertions(+), 4 deletions(-)

diff --git a/tsconfig.json b/tsconfig.json
index ce106c4..e554493 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,18 +1,46 @@
 {
-  "include": ["env.d.ts", "src/**/*", "src/**/*.vue", "types"],
   "compilerOptions": {
+    "target": "esnext",
+    "useDefineForClassFields": true,
+    "module": "esnext",
+    "moduleResolution": "node",
+    "strict": true,
+    "jsx": "preserve",
+    "sourceMap": true,
+    "resolveJsonModule": true,
+    "isolatedModules": true,
+    "esModuleInterop": true,
+    "lib": [
+      "esnext",
+      "dom"
+    ],
     "baseUrl": "./",
-    "types": ["vite/client" ,"element-plus/global"],
+    "types": [
+      "node",
+      "vite/client",
+      "element-plus/global"
+    ],
     "paths": {
-      "@/*": ["src/*"],
+      "@/*": [
+        "src/*"
+      ],
       "api/*": [
         "src/api/*"
       ],
     }
   },
+  "include": [
+    "src/**/*.ts",
+    "src/**/*.d.ts",
+    "src/**/*.tsx",
+    "src/**/*.vue",
+    "types/env.d.ts",
+    "types/*.d.ts"
+  ],
+  "exclude": ["node_modules","public"],
   "references": [
     {
       "path": "./tsconfig.config.json"
     }
   ]
-}
+}
\ No newline at end of file

--
Gitblit v1.8.0