chore: 修复tsconfig警告问题

This commit is contained in:
zhangyh
2025-10-13 15:38:33 +08:00
parent c0c0329d88
commit 8d56e3399f
2 changed files with 3 additions and 2 deletions

View File

@@ -11,7 +11,8 @@
"_c/*": ["./src/components/*"] "_c/*": ["./src/components/*"]
}, },
"skipLibCheck": true, "skipLibCheck": true,
"strict": false "strict": false,
"noEmit": true
}, },
"references": [ "references": [

View File

@@ -3,7 +3,7 @@
"include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"], "include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"],
"compilerOptions": { "compilerOptions": {
"composite": true, "composite": true,
"types": ["node", "vant/global"], "types": ["node"],
"skipLibCheck": true "skipLibCheck": true
} }
} }