From 6630b15a2c3ffdfcd99b164131b4668efb994ffa Mon Sep 17 00:00:00 2001 From: 刘嘉威 <daidaibg@163.com> Date: 星期一, 08 五月 2023 17:39:26 +0800 Subject: [PATCH] perf: 更新依赖 --- tsconfig.json | 31 ++++++++++++------------------- 1 files changed, 12 insertions(+), 19 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index a7d0be3..ce106c4 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,25 +1,18 @@ { + "include": ["env.d.ts", "src/**/*", "src/**/*.vue", "types"], "compilerOptions": { - "baseUrl": ".", - "module": "ESNext", - "target": "ES2016", - "lib": ["DOM", "ESNext"], - "strict": true, - "jsx": "preserve", - "esModuleInterop": true, - "skipLibCheck": true, - "moduleResolution": "node", - "resolveJsonModule": true, - "noUnusedLocals": true, - "strictNullChecks": true, - "allowJs": true, - "forceConsistentCasingInFileNames": true, - "types": [ - "vite/client" - ], + "baseUrl": "./", + "types": ["vite/client" ,"element-plus/global"], "paths": { - "~/*": ["src/*"] + "@/*": ["src/*"], + "api/*": [ + "src/api/*" + ], } }, - "exclude": ["dist", "node_modules"] + "references": [ + { + "path": "./tsconfig.config.json" + } + ] } -- Gitblit v1.8.0