From 51249c304c242e04017360879f1da58d08ef2113 Mon Sep 17 00:00:00 2001 From: GitHub Actions Bot Date: Tue, 31 Jan 2023 19:24:09 +0000 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=B1:=20[client]=20sync=20upgrade=20wit?= =?UTF-8?q?h=202=20commits=20[trident-sync]?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit feat: noImplicitAny: true --- packages/ui/certd-client/package.json | 6 ++++-- packages/ui/certd-client/tsconfig.json | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/ui/certd-client/package.json b/packages/ui/certd-client/package.json index 96102fd4f..1dd005996 100644 --- a/packages/ui/certd-client/package.json +++ b/packages/ui/certd-client/package.json @@ -14,7 +14,8 @@ "preview": "vite preview", "pretty-quick": "pretty-quick", "lint-fix": "eslint --fix --ext .js --ext .jsx --ext .vue src/", - "upgrade": "yarn upgrade-interactive --latest" + "upgrade": "yarn upgrade-interactive --latest", + "tsc": "vue-tsc --noEmit --skipLibCheck" }, "author": "Greper", "license": "MIT", @@ -102,7 +103,8 @@ "vite-plugin-theme": "^0.8.1", "vite-plugin-windicss": "^1.8.10", "vue-eslint-parser": "^9.1.0", - "windicss": "^3.5.6" + "windicss": "^3.5.6", + "vue-tsc": "^0.40.13" }, "husky": { "hooks": { diff --git a/packages/ui/certd-client/tsconfig.json b/packages/ui/certd-client/tsconfig.json index 3fb89b64f..3ce206ec1 100644 --- a/packages/ui/certd-client/tsconfig.json +++ b/packages/ui/certd-client/tsconfig.json @@ -1,7 +1,7 @@ { "compilerOptions": { // 这样就可以对 `this` 上的数据属性进行更严格的推断` - "noImplicitAny": false, + "noImplicitAny": true, "target": "esnext", "module": "esnext", "strict": true,