From 1043219cb007721626edcbcb77c2c6fd7c392ac1 Mon Sep 17 00:00:00 2001 From: ZhangXianQiang <1135831638@qq.com> Date: 星期二, 05 三月 2024 16:01:44 +0800 Subject: [PATCH] feat:表格滚动 --- 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